1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

e_vars isEmpty() fix

This commit is contained in:
secretr
2010-12-23 10:26:40 +00:00
parent b16980598a
commit 0b40d1d839

View File

@@ -468,7 +468,7 @@ class e_vars extends e_object
*/ */
public function isEmpty() public function isEmpty()
{ {
return $this->hasData(); return (!$this->hasData());
} }
/** /**