aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_update.php
diff options
context:
space:
mode:
authorMarek A. R <aptx@phpbb.com>2008-08-15 19:46:51 +0000
committerMarek A. R <aptx@phpbb.com>2008-08-15 19:46:51 +0000
commit3a2f8753f6439deda28bf5cc2fa3af081e443e91 (patch)
treeb889d25d1ef7f1e84349fcb05244a89393f38fa0 /phpBB/install/install_update.php
parent1990ee2d4c7bad6f45a1f9fc9e473d3b3b66c132 (diff)
downloadforums-3a2f8753f6439deda28bf5cc2fa3af081e443e91.tar
forums-3a2f8753f6439deda28bf5cc2fa3af081e443e91.tar.gz
forums-3a2f8753f6439deda28bf5cc2fa3af081e443e91.tar.bz2
forums-3a2f8753f6439deda28bf5cc2fa3af081e443e91.tar.xz
forums-3a2f8753f6439deda28bf5cc2fa3af081e443e91.zip
PHP 5.3 compatibility.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8760 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_update.php')
-rw-r--r--phpBB/install/install_update.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php
index d494007f3d..baab23c56c 100644
--- a/phpBB/install/install_update.php
+++ b/phpBB/install/install_update.php
@@ -1106,7 +1106,7 @@ class install_update extends module
'file2' => ($option == MERGE_NEW_FILE) ? implode("\n", $diff->merged_new_output()) : implode("\n", $diff->merged_orig_output()),
);
- $diff = &new diff($tmp['file1'], $tmp['file2']);
+ $diff = new diff($tmp['file1'], $tmp['file2']);
unset($tmp);
@@ -1183,7 +1183,7 @@ class install_update extends module
trigger_error('Chosen diff mode is not supported', E_USER_ERROR);
}
- $renderer = &new $render_class();
+ $renderer = new $render_class();
$template->assign_vars(array(
'DIFF_CONTENT' => $renderer->get_diff_content($diff),
@@ -1346,7 +1346,7 @@ class install_update extends module
);
// We need to diff the contents here to make sure the file is really the one we expect
- $diff = &new diff($tmp['file1'], $tmp['file2'], false);
+ $diff = new diff($tmp['file1'], $tmp['file2'], false);
$empty = $diff->is_empty();
unset($tmp, $diff);
@@ -1381,7 +1381,7 @@ class install_update extends module
);
// We need to diff the contents here to make sure the file is really the one we expect
- $diff = &new diff($tmp['file1'], $tmp['file2'], false);
+ $diff = new diff($tmp['file1'], $tmp['file2'], false);
$empty_1 = $diff->is_empty();
unset($tmp, $diff);
@@ -1392,7 +1392,7 @@ class install_update extends module
);
// We need to diff the contents here to make sure the file is really the one we expect
- $diff = &new diff($tmp['file1'], $tmp['file2'], false);
+ $diff = new diff($tmp['file1'], $tmp['file2'], false);
$empty_2 = $diff->is_empty();
unset($tmp, $diff);
@@ -1428,7 +1428,7 @@ class install_update extends module
'file3' => file_get_contents($this->new_location . $original_file),
);
- $diff = &new diff3($tmp['file1'], $tmp['file2'], $tmp['file3'], false);
+ $diff = new diff3($tmp['file1'], $tmp['file2'], $tmp['file3'], false);
unset($tmp);
@@ -1442,7 +1442,7 @@ class install_update extends module
'file2' => implode("\n", $diff->merged_orig_output()),
);
- $diff = &new diff($tmp['file1'], $tmp['file2'], false);
+ $diff = new diff($tmp['file1'], $tmp['file2'], false);
$empty = $diff->is_empty();
if ($empty)
@@ -1465,7 +1465,7 @@ class install_update extends module
);
// now compare the merged output with the original file to see if the modified file is up to date
- $diff = &new diff($tmp['file1'], $tmp['file2'], false);
+ $diff = new diff($tmp['file1'], $tmp['file2'], false);
$empty = $diff->is_empty();
if ($empty)
@@ -1634,11 +1634,11 @@ class install_update extends module
$file3 = array_shift($args);
$tmp['file3'] = (!empty($file3) && is_string($file3)) ? file_get_contents($file3) : $file3;
- $diff = &new diff3($tmp['file1'], $tmp['file2'], $tmp['file3']);
+ $diff = new diff3($tmp['file1'], $tmp['file2'], $tmp['file3']);
}
else
{
- $diff = &new diff($tmp['file1'], $tmp['file2']);
+ $diff = new diff($tmp['file1'], $tmp['file2']);
}
unset($tmp);