From 500b0c29a2a421ddc2bf8f89c7b1e8679d484e06 Mon Sep 17 00:00:00 2001 From: prasad <prasad@vtiger.com> Date: Wed, 13 Jul 2016 23:30:01 +0530 Subject: [PATCH] Syntax fix for php 7 compat. --- modules/Calendar/Appointment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Calendar/Appointment.php b/modules/Calendar/Appointment.php index f6f1cb86e..5730e3892 100644 --- a/modules/Calendar/Appointment.php +++ b/modules/Calendar/Appointment.php @@ -141,7 +141,7 @@ class Appointment for($j = $from; $j <= $to; $j=$j+(60*60*24)) { - $obj = &new Appointment(); + $obj = new Appointment(); $temp_start = date("Y-m-d",$j); $endTime = strtotime($temp_start. ' '. $result['time_start']); if($endTime > $windowTo) { @@ -187,7 +187,7 @@ class Appointment $a = 0; while ( $a < $n ) { - $obj = &new Appointment(); + $obj = new Appointment(); $result = $adb->fetchByAssoc($r); list($obj->temphour,$obj->tempmin) = explode(":",$result["time_start"]); $obj->readResult($result,$view); -- GitLab