From: Riton Date: Wed, 19 Jan 2011 23:48:08 +0000 (+0100) Subject: BugFix in PFC_OneChild (forgot a $this->) X-Git-Tag: core/1.1.2~4 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=8623e0efe391046d4ce8b4e001fad1576c7c997a;p=platal.git BugFix in PFC_OneChild (forgot a $this->) Signed-off-by: Riton Signed-off-by: Florent Bruneau --- diff --git a/classes/plfilter.php b/classes/plfilter.php index 6b4bdda..609c1cc 100644 --- a/classes/plfilter.php +++ b/classes/plfilter.php @@ -185,7 +185,7 @@ abstract class PFC_OneChild implements PlFilterCondition public function export() { - return array('child' => $child->export()); + return array('child' => $this->child->export()); } } // }}}