Nick Bohle wrote:
I found another "fix" that was posted here:
http://code.google.com/p/simple-tags/issues/list

OPEN simple-tags.php (1.3.9.1) and REPLACE

// Init ST
global $simple_tags;
$simple_tags = new SimpleTags();

WITH

// Init ST
function st_init() {
        global $simple_tags;
        $simple_tags = new SimpleTags();
}

add_action('init', 'st_init');

This made Simple Tags working under WP 2.5 RC2, RC3 and (now) WP 2.5.

But it seems that the plug-in author deleted the fix. Don't know why...

Cheers


Nick,

I was just there. He didn't delete it, that issue is considered "fixed" so it doesn't show up when you first load the "Issues" page which by default only shows "Open Issues. You can change that by choosing "All Issues" from the drop down menu at the top left above the issues list.

It  caught me off guard as well.
_______________________________________________
wp-testers mailing list
[email protected]
http://lists.automattic.com/mailman/listinfo/wp-testers

Reply via email to