Completed
Push — master ( b029a9...ae7e79 )
by Patrick
03:01
created
Data/class.Filter.php 1 patch
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,10 @@
 block discarded – undo
183 183
         $count = count($this->children);
184 184
         for($i = 0; $i < $count; $i++)
185 185
         {
186
-            if(!is_object($this->children[$i])) continue;
186
+            if(!is_object($this->children[$i]))
187
+            {
188
+                continue;
189
+            }
187 190
             if(strstr($this->children[$i]->var1, $substr) !== false ||
188 191
                strstr($this->children[$i]->var2, $substr) !== false)
189 192
             {
Please login to merge, or discard this patch.