Quote:
03-03-03 at 01:23 AM 7thgenCivic.Com said this in Post #31
I just made some more changes.
Instead of displaying ( / ) or () if there is nothing there, I added this.
|
Yours contains some typo mistakes. Here the corrected one (apply in both private.php and private2.php)
PHP Code:
$msgin_track = $DB_site->query_first("SELECT COUNT(*) AS track_msgtotal FROM privatemessage WHERE fromuserid=$bbuserinfo[userid] AND receipt='1'");
if ($msgin_track[track_msgtotal]) :
$track_msgtotal = $msgin_track[track_msgtotal];
else :
$track_msgtotal = 0;
endif;
$msgin_trackread = $DB_site->query_first("SELECT COUNT(*) AS track_msgtotalread FROM privatemessage WHERE fromuserid=$bbuserinfo[userid] AND receipt='2'");
if ($msgin_trackread[track_msgtotalread]) :
$track_msgtotalread = $msgin_trackread[track_msgtotalread];
else :
$track_msgtotalread = 0;
endif;