diff options
| author | David M <davidmj@users.sourceforge.net> | 2006-03-18 06:39:47 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2006-03-18 06:39:47 +0000 |
| commit | 593ab697a0be41b0b04d64b00e8e3ec767a9f083 (patch) | |
| tree | 76e215420d011b516e0386b55a2ae36316e0e59a /phpBB/install/install.php | |
| parent | f2cc5c093dd6a040d7a6ef6a4358dbfe0b70ff88 (diff) | |
| download | forums-593ab697a0be41b0b04d64b00e8e3ec767a9f083.tar forums-593ab697a0be41b0b04d64b00e8e3ec767a9f083.tar.gz forums-593ab697a0be41b0b04d64b00e8e3ec767a9f083.tar.bz2 forums-593ab697a0be41b0b04d64b00e8e3ec767a9f083.tar.xz forums-593ab697a0be41b0b04d64b00e8e3ec767a9f083.zip | |
- Cleaned up some compress stuff
- Replaced deprecated functions in the PostrgreSQL DBAL
- Added an undefined constant during install
- Oh, and we now have backups :D We currently work with all the MySQL flavors, PostgreSQL and SQLite...
git-svn-id: file:///svn/phpbb/trunk@5647 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
| -rw-r--r-- | phpBB/install/install.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index 0c3521eb1d..5cbd1ae235 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -1087,6 +1087,7 @@ if ($stage == 3) $sql_query = preg_replace('#phpbb_#is', $table_prefix, $sql_query); $remove_remarks($sql_query); + $sql_query = split_sql_file($sql_query, $delimiter); foreach ($sql_query as $sql) @@ -1237,6 +1238,7 @@ if ($stage == 4) define('USER_INACTIVE', 1); define('USER_IGNORE', 2); define('USER_FOUNDER', 3); + define('LOGIN_SUCCESS', 3); $sql = "SELECT * |
