1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Issue #1356 - PHP7 Fixes.

This commit is contained in:
Cameron
2016-02-14 12:15:55 -08:00
parent 32636ec39d
commit 486f3d4961
54 changed files with 205 additions and 285 deletions

View File

@@ -78,7 +78,7 @@ require_once(realpath(dirname(__FILE__)."/class2.php"));
$sql = e107::getDb();
if($sql->select("cron",'cron_function,cron_tab','cron_active =1'))
{
while($row = $sql->fetch(MYSQL_ASSOC))
while($row = $sql->fetch())
{
list($class,$function) = explode("::",$row['cron_function'],2);
$key = $class."__".$function;