diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-25 16:06:11 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-25 16:06:11 +0000 |
commit | 4ca00cba39a0169bd521cbe7e9bd24d3bf3c1cd2 (patch) | |
tree | d37cd35ffe2f474f21c27e49755815938dda4770 /phpBB/install/database_update.php | |
parent | c28dc56084ec8b3e391d528ec05264a192001b19 (diff) | |
download | forums-4ca00cba39a0169bd521cbe7e9bd24d3bf3c1cd2.tar forums-4ca00cba39a0169bd521cbe7e9bd24d3bf3c1cd2.tar.gz forums-4ca00cba39a0169bd521cbe7e9bd24d3bf3c1cd2.tar.bz2 forums-4ca00cba39a0169bd521cbe7e9bd24d3bf3c1cd2.tar.xz forums-4ca00cba39a0169bd521cbe7e9bd24d3bf3c1cd2.zip |
please have a second look at the change within session.php - we had a few "doubled" keys within the db...
git-svn-id: file:///svn/phpbb/trunk@7946 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r-- | phpBB/install/database_update.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 74ffdc8c8a..395eefc1f1 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -608,6 +608,8 @@ if (version_compare($current_version, '3.0.RC3', '<=')) <p><?php echo $lang['PROGRESS']; ?> :: <strong> <?php + flush(); + // after RC3 a different utf8_clean_string function is used, this requires that // the unique column username_clean is recalculated, during this recalculation // duplicates might be created. Since the column has to be unique such usernames @@ -1316,6 +1318,8 @@ add_log('admin', 'LOG_UPDATE_DATABASE', $orig_version, $updates_to_version); // Now we purge the session table as well as all cache files $cache->purge(); +exit; + ?> </div> |