thomascube
2008-03-28 967b342039261ab294fe85d806fe49ce16391ada
installer/rcube_install.php
@@ -79,7 +79,7 @@
   */
  function _load_config($suffix)
  {
    include '../config/main.inc' . $suffix;
    @include '../config/main.inc' . $suffix;
    if (is_array($rcmail_config)) {
      $this->config += $rcmail_config;
    }
@@ -103,7 +103,7 @@
    $value = $this->is_post && (isset($_POST["_$name"]) || $this->config_props[$name]) ? $_POST["_$name"] : $this->config[$name];
    
    if ($name == 'des_key' && !isset($_REQUEST["_$name"]))
      $value = self::random_key(24);
      $value = rcube_install::random_key(24);
    
    return $value !== null && $value !== '' ? $value : $default;
  }
@@ -143,7 +143,7 @@
        $value = '';
      }
      else if ($prop == 'default_host' && is_array($value)) {
        $value = self::_clean_array($value);
        $value = rcube_install::_clean_array($value);
        if (count($value) <= 1)
          $value = $value[0];
      }
@@ -171,7 +171,7 @@
        $out);
    }
    
    return $out;
    return trim($out);
  }