[wp-testers] Fatal error: Call to a member function on a non-object (Upgrade from 2.3.3)

Kirk M kmb42vt at gmail.com
Sat Mar 29 16:57:10 GMT 2008


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.


More information about the wp-testers mailing list