Link to my forum -
http://forum.azkg.us/ (content Russian language, but still in English)
In the instruction said about newreply.php
Quote:
In /newreply.php, find:
------------------
// update user stuff
$dotitle="";
if ($bbuserinfo[userid]!=0)
{
if ($bbuserinfo[customtitle]==0 && $foruminfo[countposts])
{
$usergroup=$DB_site->query_first("SELECT usertitle FROM usergroup WHERE usergroupid='$bbuserinfo[usergroupid]'");
if ($usergroup[usertitle]=="") {
$gettitle=$DB_site->query_first("SELECT title FROM usertitle WHERE minposts<=$bbuserinfo[posts]".iif ($foruminfo['countposts'],"+1","")." ORDER BY minposts DESC LIMIT 1");
$usertitle=$gettitle[title];
} else {
$usertitle=$usergroup[usertitle];
}
$dotitle="usertitle='".addslashes($usertitle)."'," ;
}
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
}
|
But following line:
Quote:
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
}
|
is already changed and used by part of Lesane's Store Hack:
Quote:
// Store hack by Lesane
$storeadmin = $DB_site->query_first("SELECT newreply FROM storeadmin");
$fool=$storeadmin[newreply];
if($fool=='0') {
$storeforum = $DB_site->query_first("SELECT storereply FROM forum WHERE forumid='$forumid'");
$fool = $storeforum[storereply];
}
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,storep=storep+'$fool',","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
}
|
The same in the newthread.php
I think that is why titles do not update after new post...
May be it is better to use MultirankingSystem Hack?