BugFix in PFC_OneChild (forgot a $this->)
authorRiton <riton@melix.net>
Wed, 19 Jan 2011 23:48:08 +0000 (00:48 +0100)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Thu, 20 Jan 2011 11:25:16 +0000 (12:25 +0100)
Signed-off-by: Riton <riton@melix.net>
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
classes/plfilter.php

index 6b4bdda..609c1cc 100644 (file)
@@ -185,7 +185,7 @@ abstract class PFC_OneChild implements PlFilterCondition
 
     public function export()
     {
-        return array('child' => $child->export());
+        return array('child' => $this->child->export());
     }
 }
 // }}}