Call-time pass-by-reference has been deprecated Stuff.

This commit is contained in:
Klaus Leithoff 2009-08-28 11:46:07 +00:00
parent d7c2041872
commit 88687148cd

View File

@ -93,7 +93,7 @@ if ($_POST['save_backup_settings'])
{
$cleaned_files = array();
/* Remove old backups. */
$db_backup->housekeeping(&$cleaned_files);
$db_backup->housekeeping($cleaned_files);
foreach ($cleaned_files as $file)
{
echo '<div align="center">'.lang('entry has been deleted sucessfully').': '.$file."</div>\n";
@ -113,7 +113,7 @@ if($_POST['backup'])
/* Remove old backups. */
$cleaned_files = array();
$db_backup->housekeeping(&$cleaned_files);
$db_backup->housekeeping($cleaned_files);
foreach ($cleaned_files as $file)
{
echo '<div align="center">'.lang('entry has been deleted sucessfully').': '.$file."</div>\n";