Skip to content

Commit e0383fb

Browse files
authored
Check fix.
1 parent 937d889 commit e0383fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function __set ($name, $value) {
138138
* @return mixed
139139
*/
140140
public function __get ($name) {
141-
if (property_exists ($this, 'hidden') && array_search ($name, $this->hidden) === false)
141+
if (property_exists ($this, 'hidden') && array_search ($name, $this->hidden) !== false)
142142
return null;
143143

144144
if (isset ($this->data[$name]) && $this->data[$name] instanceof dbObject)

0 commit comments

Comments
 (0)