Hmm so it is fetching it then, you can remove the code I posted in my previous post. The only place I'm guessing the error could lie is when the data is unserialize()'d. Maybe the data has been somehow changed? Not sure how or why.
$parsing_cache has been serialize()'d hasn't it?
Try this:
PHP Code:
if($vbulletin->datastore->do_db_fetch("'mystuff'"))
{
echo 'YEY!';
}
else
{
echo 'BOO!';
}
What do you get outputted? (Yey or Boo?)