We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 937d889 commit e0383fbCopy full SHA for e0383fb
dbObject.php
@@ -138,7 +138,7 @@ public function __set ($name, $value) {
138
* @return mixed
139
*/
140
public function __get ($name) {
141
- if (property_exists ($this, 'hidden') && array_search ($name, $this->hidden) === false)
+ if (property_exists ($this, 'hidden') && array_search ($name, $this->hidden) !== false)
142
return null;
143
144
if (isset ($this->data[$name]) && $this->data[$name] instanceof dbObject)
0 commit comments