projects
/
platal.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad884e3
)
BugFix in PFC_OneChild (forgot a $this->)
author
Riton
<riton@melix.net>
Wed, 19 Jan 2011 23:48:08 +0000
(
00:48
+0100)
committer
Florent 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
patch
|
blob
|
blame
|
history
diff --git
a/classes/plfilter.php
b/classes/plfilter.php
index
6b4bdda
..
609c1cc
100644
(file)
--- 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());
}
}
// }}}