OK, the necessary add-ons
1) Open root/editpost.php, find:
Code:
if ($isfirst and $title!="" and $postinfo[dateline]+$editthreadtitlelimit*60>time()) {
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."' WHERE threadid=$threadinfo[threadid]");
//$title="";
}
AFTER it ADD:
Code:
if ($isfirst) {
$page = iif(strlen($message)>500,substr($message,0,500).'...',$message);
$page = bbcodeparse($page);
$page = strip_tags($page);
$DB_site->query("UPDATE thread SET preview='".addslashes(htmlspecialchars($page))."' WHERE threadid=$threadinfo[threadid]");
}
Save and upload. This will ensure the 'preview' is also updated when the first post is edited.
2) open root/postings.php.
a) find:
Code:
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."',notes='".addslashes($threadinfo[notes])."'$pollcode WHERE threadid='$threadid'");
Replace is with (changes marked in high):
Code:
[high] $getfirstpost=$DB_site->query_first("SELECT pagetext FROM post WHERE threadid=$threadid ORDER BY dateline LIMIT 1");
$page = iif(strlen($getfirstpost[pagetext])>500,substr($getfirstpost[pagetext],0,500).'...',$getfirstpost[pagetext]);
$page = bbcodeparse($page);
$page = strip_tags($page);[/high]
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."',notes='".addslashes($threadinfo[notes])."'[high],preview='".addslashes(htmlspecialchars($page))."'[/high]$pollcode WHERE threadid='$threadid'");
This will ensure the 'preview' is updated when a thread is merged, to correctly reflect the new 1st post.
b) find:
Code:
// Update first post in each thread as title information in relation to the sames words being in the first post may have changed now.
$getfirstpost=$DB_site->query_first("SELECT postid FROM post WHERE threadid=$threadid ORDER BY dateline LIMIT 1");
$DB_site->query("DELETE FROM searchindex WHERE postid=$getfirstpost[postid]");
indexpost($getfirstpost[postid]);
$getfirstpost=$DB_site->query_first("SELECT postid FROM post WHERE threadid=$newthreadid ORDER BY dateline LIMIT 1");
$DB_site->query("DELETE FROM searchindex WHERE postid=$getfirstpost[postid]");
indexpost($getfirstpost[postid]);
Replace it with (changes marked in high):
Code:
// Update first post in each thread as title information in relation to the sames words being in the first post may have changed now.
$getfirstpost=$DB_site->query_first("SELECT postid,[high]pagetext[/high] FROM post WHERE threadid=$threadid ORDER BY dateline LIMIT 1");
$DB_site->query("DELETE FROM searchindex WHERE postid=$getfirstpost[postid]");
indexpost($getfirstpost[postid]);
[high] $page = iif(strlen($getfirstpost[pagetext])>500,substr($getfirstpost[pagetext],0,500).'...',$getfirstpost[pagetext]);
$page = bbcodeparse($page);
$page = strip_tags($page);
$DB_site->query("UPDATE thread SET preview='".addslashes(htmlspecialchars($page))."' WHERE threadid='$threadid'");
unset($page);[/high]
$getfirstpost=$DB_site->query_first("SELECT postid,[high]pagetext[/high] FROM post WHERE threadid=$newthreadid ORDER BY dateline LIMIT 1");
$DB_site->query("DELETE FROM searchindex WHERE postid=$getfirstpost[postid]");
indexpost($getfirstpost[postid]);
[high] $page = iif(strlen($getfirstpost[pagetext])>500,substr($getfirstpost[pagetext],0,500).'...',$getfirstpost[pagetext]);
$page = bbcodeparse($page);
$page = strip_tags($page);
$DB_site->query("UPDATE thread SET preview='".addslashes(htmlspecialchars($page))."' WHERE threadid='$newthreadid'");
unset($page);[/high]
This will ensure the 'preview' is updated for both threads, old and new, after splitting a thread in two.
Very nice hack Parker - I personally will use it a lot!!!
Thanks,
Bira