mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Call-time pass-by-reference has been deprecated Stuff.
This commit is contained in:
parent
d7c2041872
commit
88687148cd
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user