diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-12-12 16:18:56 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-12-12 16:18:56 +0000 |
commit | 983da62c50a1777787555a300d756711d27bfd41 (patch) | |
tree | 38050d11670bd4bb181e2d8c3e0c9848bcfe8483 /phpBB/install/install_update.php | |
parent | feb92bf1490def6bc63e76d79b555b4480628aea (diff) | |
download | forums-983da62c50a1777787555a300d756711d27bfd41.tar forums-983da62c50a1777787555a300d756711d27bfd41.tar.gz forums-983da62c50a1777787555a300d756711d27bfd41.tar.bz2 forums-983da62c50a1777787555a300d756711d27bfd41.tar.xz forums-983da62c50a1777787555a300d756711d27bfd41.zip |
seems like there is an error within the udpater, skipping the first file changed. This is not good(tm). For Gold, we will provide update packages for going from RC7 -> gold and RC8 -> gold.
git-svn-id: file:///svn/phpbb/trunk@8276 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_update.php')
-rw-r--r-- | phpBB/install/install_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index 22d3af9d2a..adbe03283b 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -1232,7 +1232,7 @@ class install_update extends module foreach ($this->update_info['files'] as $index => $file) { - if (is_int($update_list['status']) && $index <= $update_list['status']) + if (is_int($update_list['status']) && $index < $update_list['status']) { continue; } |