From fffdfeba33c34dff3bc99963f8a4c664134d902b Mon Sep 17 00:00:00 2001 From: yashodha Date: Sun, 12 May 2013 23:36:18 +0530 Subject: [PATCH] fix syntax error --- CRM/Utils/Weight.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Weight.php b/CRM/Utils/Weight.php index 525f791a62..0bd72a7551 100644 --- a/CRM/Utils/Weight.php +++ b/CRM/Utils/Weight.php @@ -88,7 +88,7 @@ class CRM_Utils_Weight { * @return bool */ static function delWeight($daoName, $fieldID, $fieldValues = NULL, $weightField = 'weight') { - $object = new . $daoName(); + $object = new $daoName(); $object->id = $fieldID; if (!$object->find(TRUE)) { return FALSE; -- 2.25.1