Thomas Bruederli
2013-07-17 fd6b193c6e072339b5012945aae8b6aa2c0f95b7
installer/rcube_install.php
@@ -277,14 +277,13 @@
   *
   * @return boolean True if the file was saved successfully, false if not
   */
  function save_configfile()
  function save_configfile($config)
  {
    if(is_writable(RCUBE_CONFIG_DIR))
      {
           return file_put_contents(RCUBE_CONFIG_DIR . 'config.inc.php', $_SESSION['config']);
      }
    if (is_writable(RCUBE_CONFIG_DIR)) {
      return file_put_contents(RCUBE_CONFIG_DIR . 'config.inc.php', $config);
    }
      return false;
    return false;
  }
  /**