Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author askapache

    (@askapache)

    I just noticed this today too… I bet it is being caused by 1 of 2 things.

    1. Updates to WP that add filters that corrupt the options
    2. An errant key in the last update? Improbable.

    It works fine in 3.4-alpha, does not work correctly in 3.3.2 or apparently 3.3.1?

    I’ll release a fix this weekend.

    Plugin Author askapache

    (@askapache)

    Fixed in version 4.2.8.5

    The problem was #2, bad code on my part that was only unserializing the code for version 4.2.8.3

    Here is the fixed code:

    function LoadOptions($opts=array('options','plugin'))
    {
    	foreach ($opts as $pn) $this->{$pn} = get_option("askapache_google_404_{$pn}");
    	$this->code=(  (version_compare($this->plugin['version'], '4.8.2.3', 'gte') )
    						? unserialize(base64_decode(get_option("askapache_google_404_code")))
    						: get_option("askapache_google_404_code")
    					);
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: AskApache Google 404] It displays "y" in the CSS, JS and HTML editor…’ is closed to new replies.