From 27a72d746339a9c3ef0010d89fdbb7355a764a0d Mon Sep 17 00:00:00 2001 From: jennylee Date: Mon, 13 Oct 2014 15:48:12 -0400 Subject: [PATCH] Fix for a strict notice for PHP 5.4 We removed the & (ampersand) symbol, because the new operator returns a reference automatically, so assigning the result of new by reference results in an E_STRICT message. --- gulliver/system/class.g.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/system/class.g.php b/gulliver/system/class.g.php index e07d8e4f2..a4ad2e100 100755 --- a/gulliver/system/class.g.php +++ b/gulliver/system/class.g.php @@ -5279,7 +5279,7 @@ class G $sflagAudit = $oServerConf->getAuditLogProperty( 'AL_OPTION', SYS_SYS ); $ipClient = G::getIpAddress(); - $licensedFeatures = & PMLicensedFeatures::getSingleton(); + $licensedFeatures = PMLicensedFeatures::getSingleton(); if ($sflagAudit && $licensedFeatures->verifyfeature('vtSeHNhT0JnSmo1bTluUVlTYUxUbUFSVStEeXVqc1pEUG5EeXc0MGd2Q3ErYz0=')) { $workspace = defined('SYS_SYS') ? SYS_SYS : 'Wokspace Undefined'; $username = isset($_SESSION['USER_LOGGED']) && $_SESSION['USER_LOGGED'] != '' ? $_SESSION['USER_LOGGED'] : 'Unknow User';