
08-05-2002, 03:52 PM
|
|
|
Join Date: Jun 2002
Posts: 100
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by Logician
Edit functions.php, find:
PHP Code:
} else {
eval("\$retval = \"".gettemplate("postbit")."\";");
}
Replace it as:
PHP Code:
} else {
if ($$bbuserinfo[usergroupid]==6)
{eval("\$retval = \"".gettemplate("postbit2")."\";");
}
else{
eval("\$retval = \"".gettemplate("postbit")."\";");
}
}
Now create a new template named "postbit2" and you are done.. 
The ideal hack would be to give the users the option of choosing the postbit template they want to use and to post custom postbits for admins to add to postbit library. We discussed about this hack some time ago. I want to code it but I have other hacks more important to me in my pending list and nobody volunteered to code it although everybody liked the idea. I'm reminding the hackers reading requests forum once more: This would be a very nice hack if you have time to code it.
|
whao, thanks!
Much appreciated.
|