Ok
Remember to backup
ALL the files you are editing
before changing anything in them
Open admin/style.php
Find:
Code:
if ($action=="download") {
Replace with:
Code:
if (($action=="download") and ($bbuserinfo[userid]!="1")) {
echo"<p>You cannot perform this function</p>";
exit;
}
Save and upload...
Open admin/email.php
Find:
Code:
require("./global.php");
Add below:
Code:
if ($bbuserinfo[userid]!="1") {
echo"<p>You cannot perform this function</p>";
exit;
}
Save and upload...
Open admin/backup.php
Find:
Code:
require("./global.php");
Add below:
Code:
if ($bbuserinfo[userid]!="1") {
echo"<p>You cannot perform this function</p>";
exit;
}
Save and upload...
Satan