Quote:
Originally Posted by Disco_Dave
Getting a warning message when this is running now vb4.2.2
PHP Code:
Warning: Assigning the return value of new by reference is deprecated in ..../includes/cron/cronbackup.php on line 18
Warning: Function set_magic_quotes_runtime() is deprecated in ..../includes/cron/cronbackup.php on line 13
Dave
|
The mod that has the warning is:
vBulletin Cron Based Database Backup
https://vborg.vbsupport.ru/showthrea...ht=cron+backup
it is not this mod...
In /includes/cron/cronbackup.php on line 18
Find:
PHP Code:
$mysqlBackup = &new mysqlBackup($vbulletin->db, $vbulletin->options);
Replace:
PHP Code:
$mysqlBackup = new mysqlBackup($vbulletin->db, $vbulletin->options);
This is a warning not an error.