The original lines are:
public function filter_theme_act_display_home( $handled, &
$theme )
public function filter_theme_act_display_blog_home( $handled,
&$theme )
In both lines I removed the ampersand before "$theme", so the lines
read:
public function filter_theme_act_display_home( $handled,
$theme )
public function filter_theme_act_display_blog_home( $handled,
$theme )
Colin Seymour identified the problem as being caused by how PHP
handles referencing (which has changed). The discussion we had about
it is here:
<http://groups.google.com/group/habari-users/browse_thread/thread/b107f36763f39da0#
>
Hope that helps
Philip
This is the link to the thread
> --
> To post to this group, send email to habari...@googlegroups.com
> To unsubscribe from this group, send email to habari-users...@googlegroups.com
> For more options, visit this group at http://groups.google.com/group/habari-users
I had the same problem. I solved it by changing 2 lines in the plugin code.
The original lines are:
public function filter_theme_act_display_home( $handled, &$theme )