mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-30 01:38:37 +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();
|
$cleaned_files = array();
|
||||||
/* Remove old backups. */
|
/* Remove old backups. */
|
||||||
$db_backup->housekeeping(&$cleaned_files);
|
$db_backup->housekeeping($cleaned_files);
|
||||||
foreach ($cleaned_files as $file)
|
foreach ($cleaned_files as $file)
|
||||||
{
|
{
|
||||||
echo '<div align="center">'.lang('entry has been deleted sucessfully').': '.$file."</div>\n";
|
echo '<div align="center">'.lang('entry has been deleted sucessfully').': '.$file."</div>\n";
|
||||||
@ -113,7 +113,7 @@ if($_POST['backup'])
|
|||||||
|
|
||||||
/* Remove old backups. */
|
/* Remove old backups. */
|
||||||
$cleaned_files = array();
|
$cleaned_files = array();
|
||||||
$db_backup->housekeeping(&$cleaned_files);
|
$db_backup->housekeeping($cleaned_files);
|
||||||
foreach ($cleaned_files as $file)
|
foreach ($cleaned_files as $file)
|
||||||
{
|
{
|
||||||
echo '<div align="center">'.lang('entry has been deleted sucessfully').': '.$file."</div>\n";
|
echo '<div align="center">'.lang('entry has been deleted sucessfully').': '.$file."</div>\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user