From 8623e0efe391046d4ce8b4e001fad1576c7c997a Mon Sep 17 00:00:00 2001 From: Riton Date: Thu, 20 Jan 2011 00:48:08 +0100 Subject: [PATCH] BugFix in PFC_OneChild (forgot a $this->) Signed-off-by: Riton Signed-off-by: Florent Bruneau --- classes/plfilter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } // }}} -- 2.1.4