
05-06-2003, 10:57 PM
|
 |
|
|
Join Date: Apr 2003
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
11-04-02 at 11:30 PM Tigga said this in Post #21
Well just incase anyone else is having the problem with the custom folders total not showing, I figured out what was wrong.
Open private.php and find:
PHP Code:
eval("\$folderboxeshack .= \"".gettemplate("priv_showfolders_folderbit_hack",1,0)."\";");
Right above that add:
PHP Code:
$msginfolder = $DB_site->query_first("SELECT COUNT(*) AS foldermsgtotal FROM privatemessage
WHERE userid=$bbuserinfo[userid] AND folderid=$folder[folderid]");
$foldermsgtotal = $msginfolder[foldermsgtotal];
Then you can look for another instance of the code above that you just added (near the bottom of the file) and remove it. Works great now.
|
Thanks!
|