diff options
| author | David M <davidmj@users.sourceforge.net> | 2007-01-20 04:20:18 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2007-01-20 04:20:18 +0000 |
| commit | 9359939eb2daacc5ddba09206a12dcac73c7e330 (patch) | |
| tree | c4907bb8f5d9f74b39024eadce888495ad4e202d /phpBB | |
| parent | 7e954145c4fbe105dfa9ccb9d731f7af99f188bb (diff) | |
| download | forums-9359939eb2daacc5ddba09206a12dcac73c7e330.tar forums-9359939eb2daacc5ddba09206a12dcac73c7e330.tar.gz forums-9359939eb2daacc5ddba09206a12dcac73c7e330.tar.bz2 forums-9359939eb2daacc5ddba09206a12dcac73c7e330.tar.xz forums-9359939eb2daacc5ddba09206a12dcac73c7e330.zip | |
#7256
git-svn-id: file:///svn/phpbb/trunk@6910 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
| -rwxr-xr-x | phpBB/install/install_install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 74c476649a..6ba31c6039 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1925,7 +1925,8 @@ class install_install extends module if ($row = $db->sql_fetchrow($result)) { // Likely matches for an existing phpBB installation - $table_ary = array($table_prefix . 'attachments', $table_prefix . 'config', $table_prefix . 'sessions', $table_prefix . 'topics', $table_prefix . 'users'); + $temp_prefix = strtolower($table_prefix); + $table_ary = array($temp_prefix . 'attachments', $temp_prefix . 'config', $temp_prefix . 'sessions', $temp_prefix . 'topics', $temp_prefix . 'users'); do { |
