diff options
author | Eudyptula <eitan@mosenkis.net> | 2009-08-13 17:35:58 -0400 |
---|---|---|
committer | Eudyptula <eitan@mosenkis.net> | 2009-08-13 17:35:58 -0400 |
commit | 3d5c48d6d0c249d5a51318d3524c2d40e8bf1df9 (patch) | |
tree | b4f5d2c673aadbc786eb54c7f4dc32dba8dcdf46 /shared/functions/load_config.php | |
parent | Various improvements to HTML forms classes; Updated login to use form object;... (diff) | |
download | ingenue-3d5c48d6d0c249d5a51318d3524c2d40e8bf1df9.tar.gz ingenue-3d5c48d6d0c249d5a51318d3524c2d40e8bf1df9.tar.bz2 ingenue-3d5c48d6d0c249d5a51318d3524c2d40e8bf1df9.zip |
Wrote a script for automatically keeping cache files (stage3, install ISO, etc.) up to date by ftp, updated frontend and backend to reflect storing stage3 and iso filenames in the 'cache' table instead of 'gentoo_profiles'
Diffstat (limited to 'shared/functions/load_config.php')
-rw-r--r-- | shared/functions/load_config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/functions/load_config.php b/shared/functions/load_config.php index d719fb9..4560f5d 100644 --- a/shared/functions/load_config.php +++ b/shared/functions/load_config.php @@ -3,7 +3,7 @@ function load_config() { require(SHARED.'/include/defaults.php'); require(SHARED.'/config.php'); $modules=explode(' ', $modules); - foreach (explode(' ', 'title url sqlhost sqluser sqlpass sqldb debug modules bundlers cookiename sessionlength mod_rewrite timezone_root emailfrom check_email_dns registration invite logview_max progressbar_width pkgdir_root emerge_default_opts portdir backend_id') as $var) { + foreach (explode(' ', 'title url sqlhost sqluser sqlpass sqldb debug modules bundlers cookiename sessionlength mod_rewrite timezone_root emailfrom check_email_dns registration invite logview_max progressbar_width pkgdir_root emerge_default_opts portdir backend_id tmpdir') as $var) { if (isset($$var)) { $GLOBALS['S']['conf'][$var]=$$var; } |