diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-01-10 15:14:16 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-01-10 15:14:16 -0600 |
commit | 63780bda8d6e6e968b934b200853de2776e53596 (patch) | |
tree | cc908ab4b0fafe86a252771f053e0a2f18e55748 | |
parent | d50500860fe44a78c8f29e0f2382b96da17c0b62 (diff) | |
download | forums-63780bda8d6e6e968b934b200853de2776e53596.tar forums-63780bda8d6e6e968b934b200853de2776e53596.tar.gz forums-63780bda8d6e6e968b934b200853de2776e53596.tar.bz2 forums-63780bda8d6e6e968b934b200853de2776e53596.tar.xz forums-63780bda8d6e6e968b934b200853de2776e53596.zip |
[feature/migrations] Move test.php -> install/database_update_migrations.php
This should be used as a basis for the database updater using migrations.
PHPBB3-9737
-rw-r--r-- | phpBB/install/database_update_migrations.php (renamed from phpBB/test.php) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/test.php b/phpBB/install/database_update_migrations.php index 6602aa8dcc..52682dc489 100644 --- a/phpBB/test.php +++ b/phpBB/install/database_update_migrations.php @@ -17,7 +17,7 @@ use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; * @ignore */ define('IN_PHPBB', true); -$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; +$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); require($phpbb_root_path . 'includes/startup.' . $phpEx); |