1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

- fixed bug within the user_add function

- fixed some updater bugs


git-svn-id: file:///svn/phpbb/trunk@6663 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-11-26 17:22:32 +00:00
parent 4d6f84c320
commit 12fb5f6aa2
4 changed files with 185 additions and 5 deletions

View File

@@ -891,6 +891,16 @@ class install_update extends module
// If the file is not modified we are finished here...
if ($diff->is_empty())
{
// Further check if it is already up to date - it could happen that non-modified files
// slip through
$diff = &new diff(file($this->new_location . $original_file), file($phpbb_root_path . $file));
if ($diff->is_empty())
{
$update_list['up_to_date'][] = $update_ary;
return;
}
$update_list['not_modified'][] = $update_ary;
return;
}