Skip to content
Snippets Groups Projects
Commit fa931e33 authored by Prasad's avatar Prasad
Browse files

Fixed missing static specifier when check for value existence

parent 1d468e0d
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ class VtigerWebserviceObject{
}
}
$rowData = isset($_fromIdCache[$entityId]) ? self::$_fromIdCache[$entityId] : '';
$rowData = isset(self::$_fromIdCache[$entityId]) ? self::$_fromIdCache[$entityId] : '';
if($rowData) {
return new VtigerWebserviceObject($rowData['id'],$rowData['name'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment