Thread: New class
View Single Post
  #7  
Old 24th August 2010, 22:46
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
replace

Code:
<?php if (get_user_class() >= UC_UPLOADER) { ?>
with
Code:
<?php if (get_user_class() <> UC_UPLOADER) { ?>
or try
replace
Code:
<?php if (get_user_class() >= UC_UPLOADER) { ?>
<td align="center" class="navigation"><a href=/upload.php><? print("" .UPLOAD. "")?></a></td>


with

Code:
<?php if (get_user_class() <>= UC_UPLOADER)  ?>
<td align="center" class="navigation"><a href=/upload.php><? print("" .UPLOAD. "")?></a></td>
<?php}?>

__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote