Quote:
Originally Posted by Lynne
Yes, I am saying you will have to do the "SQL thing" in order to grab the post. I'm suggesting you look in the showpost.php page because they used the same query there that you will need to use.
|
I looked at the showpost.php. Three times. But I'm not sure what I should take. I'm sorr.y I'm just not any good at this.
--------------- Added [DATE]1243728398[/DATE] at [TIME]1243728398[/TIME] ---------------
It's really hard for me to figure out.
Could it possibly be related to this?
Code:
if ($postbit_obj->cachable)
{
/*insert query*/
$db->shutdown_query("
REPLACE INTO " . TABLE_PREFIX . "postparsed (postid, dateline, hasimages, pagetext_html, styleid, languageid)
VALUES (
$post[postid], " .
intval($threadinfo['lastpost']) . ", " .
intval($postbit_obj->post_cache['has_images']) . ", '" .
$db->escape_string($postbit_obj->post_cache['text']) . "', " .
intval(STYLEID) . ", " .
intval(LANGUAGEID) . "
)
");
}