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

Fixes #824 impact due to check added for #808

parent bbfab20b
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,13 @@
*************************************************************************************/
class Users_Record_Model extends Vtiger_Record_Model {
/**
* Checks if the key is in property or data.
*/
public function has($key) {
return property_exists($this, $key) || parent::has($key);
}
/**
* Gets the value of the key . First it will check whether specified key is a property if not it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment