Bug in core class, invalid filter
-
If you use a subscribe2 widget (either core or pro) in a dynamic side bar on a single.php template, no content is displayed for the post. Any other widget, not related to subscribe2 will leave the post intact.
This is due to an invalid filter in class-s2-core.php on line 1734:
add_filter('the_content', array(&$this, 'filter'), 10);
Commenting this line solves the issue:
// add_filter('the_content', array(&$this, 'filter'), 10);
The filter is invalid, because the callable is invalid. The callable is invalid because there exists no ‘filter’ function in this class.
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Bug in core class, invalid filter’ is closed to new replies.