Fix for ssl_redirect_pb
-
There is a bug in the main file for the plugin, on line 52 and 53 the ‘ssl_redirect_pb’ should be inside an array with first item $this, else it will search for a global function.
I tried to locate a git repo, or contact for the Author but could not find it, so here’s the fix.
add_filter(‘template_redirect’, array($this, ‘ssl_redirect_pb’), 1);
add_action(‘template_redirect’, array($this, ‘ssl_redirect_pb’), 1);
The topic ‘Fix for ssl_redirect_pb’ is closed to new replies.