diff options
author | friendica <info@friendica.com> | 2012-11-01 15:10:05 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-01 15:10:05 -0700 |
commit | ec6ed3221dc9801683c8d6f3a9bbe4ea38ed09c6 (patch) | |
tree | 53ded18236e628a89f0b607ea99b5f5608bc206b /boot.php | |
parent | 3f7530417aa6443b8e3fd8b137c890e4f3590979 (diff) | |
download | volse-hubzilla-ec6ed3221dc9801683c8d6f3a9bbe4ea38ed09c6.tar.gz volse-hubzilla-ec6ed3221dc9801683c8d6f3a9bbe4ea38ed09c6.tar.bz2 volse-hubzilla-ec6ed3221dc9801683c8d6f3a9bbe4ea38ed09c6.zip |
move some more stuff to the install directory
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -864,14 +864,14 @@ if(! function_exists('check_config')) { if($build != DB_UPDATE_VERSION) { $stored = intval($build); $current = intval(DB_UPDATE_VERSION); - if(($stored < $current) && file_exists('update.php')) { + if(($stored < $current) && file_exists('install/update.php')) { load_config('database'); // We're reporting a different version than what is currently installed. // Run any existing update scripts to bring the database up to current. - require_once('update.php'); + require_once('install/update.php'); // make sure that boot.php and update.php are the same release, we might be // updating right this very second and the correct version of the update.php |