equal
deleted
inserted
replaced
292 if ( @is_dir(GREY_ROOT . '/.hg') ) |
292 if ( @is_dir(GREY_ROOT . '/.hg') ) |
293 require(GREY_ROOT . '/config.dev.php'); |
293 require(GREY_ROOT . '/config.dev.php'); |
294 else |
294 else |
295 require(GREY_ROOT . '/config.php'); |
295 require(GREY_ROOT . '/config.php'); |
296 } |
296 } |
297 } |
297 |
298 |
298 foreach ( array('public', 'allowcontrol', 'theme', 'allow_fork', 'use_auth', 'auth_data', 'configpass') as $var ) |
|
299 { |
|
300 if ( isset($$var) ) |
|
301 { |
|
302 $GLOBALS[$var] = $$var; |
|
303 } |
|
304 } |
|
305 } |
|
306 |