Guys, I'm really at my wit's end.
Things worked out fine for awhile after I deactivated amazonify and deleted all it's files. I thought that was it, but I was wrong. We're back to square one, although I do have some more info.
Still using WP 2.9.2 and Atahualpa 3.4.4
When I create a draft, I get the:
Catchable fatal error: Object of class stdClass could not be converted to string in /home/mathmo2/public_html/chronicles/wp-includes/formatting.php on line 1229
warning, when I go to view the post. It only gives this warning on the page for this post, not previous ones.
I tried over and over, and noticed that it does not do this until I put in tags in the "Tags (comma separated list)" box. If I write a draft without filling in that box, all is fine. But, of course, I'd like to be able to fill in that box for SEO purposes.
The offending line in the formatting.php file is the one in bold, below.
/**
* Navigates through an array and removes slashes from the values.
*
* If an array is passed, the array_map() function causes a callback to pass the
* value back to the function. The slashes from this value will removed.
*
* @since 2.0.0
*
* @param array|string $value The array or string to be striped.
* @return array|string Stripped array (or string in the callback).
*/
function stripslashes_deep($value) {
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
return $value;
}
I just published the post with no problems. I left out the tags, of course. It's at:
http://www.mathmojo.com/chronicles/2...h-terminology/
Any hints?