
06-22-2002, 08:44 AM
|
|
|
Join Date: Feb 2002
Posts: 1,495
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by Logician
why didnt you ask in the original thread? wouldnt that be easier? 
Add this code BEFORE:
PHP Code:
// Post the relevant template if any anniversaries exist:
PHP Code:
if ($siteadmins) {$siteadmins=substr($siteadmins,0,strlen($siteadmins)-2);}
if ($supermoderators) {$supermoderators=substr($supermoderators,0,strlen($supermoderators)-2);}
if ($boardmoderators) {$boardmoderators=substr($boardmoderators,0,strlen($boardmoderators)-2);}
and add , after </a> like:
if ($otorite[usergroupid]==6) {$siteadmins.='<a href="member.php?s=&action=getinfo&userid='.$otori te[userid].'">'.$otorite[username].'</a>, ';}
if ($otorite[usergroupid]==5) {$supermoderators.='<a href="member.php?s=&action=getinfo&userid='.$otori te[userid].'">'.$otorite[username].'</a>, ';}
if ($otorite[usergroupid]==7) {$boardmoderators.='<a href="member.php?s=&action=getinfo&userid='.$otori te[userid].'">'.$otorite[username].'</a>, ';}
To seperate the table, you need to change the template so that it's a html table and then put the variable $authority_list outside the existing template in template forumhome/forumhome
|
In the first step, I cannot find: // Post the relevant template if any anniversaries exist
in index.php...
|