Quote:
Originally Posted by SaN-DeeP
how can i display this error message to users who are not allowed to download the thread.
<div style="color: #C60000; font: 20px; font-weight: bold">You must register to use this forum. If you are not registered you need to register <span style="text-decoration: underline"><a href="register.php?$session[sessionurl]">HERE</a></span></div>
thnx.
Sandy...
|
in dt.php find:
PHP Code:
if (is_array($unallowed_downloaders) AND in_array($bbuserinfo[usergroupid],$unallowed_downloaders)) {echo standard_error("Sorry this feature is not meant for your usage!", '', 1);}
before that add:
PHP Code:
if ($bbuserinfo['userid']==0) {eval(print_standard_error('error_guestcannotdlthread'));}
then create a new phrase in error phrases named "guestcannotdlthread" and put your message there.