View Single Post
  #6  
Old 25th April 2008, 14:25
Neptune
Guest
 
Posts: n/a
Default Re: Auto delete torrents
in upload.php

change

Code:
if (get_user_class() < UC_UPLOADER)
{
  stdmsg("Blabla", "Blablabla");
  stdfoot();
  exit;
}
to

Code:
if (get_user_class() < UC_VIP)
{
  stdmsg("Blabla", "Blablabla");
  stdfoot();
  exit;
}
And post your announce.php
Reply With Quote