fix filtering bug

This commit is contained in:
John Bintz 2009-11-16 21:39:06 -05:00
parent ce27525e72
commit 00253383d3
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class ComicPressFilters {
'the_content' => 1,
'show_media' => 3
) as $filter => $param_count) {
add_filter($filter, array(&$__comicpress_filters, $filter), 10, $param_count);
add_filter($filter, array(&$this, $filter), 10, $param_count);
}
}