First of all I want to say
Thx a lot @ Satan for this great Hack! This was exactly what I was searching for.
While hacking the files I encountered some Problems due to some Errors you made. Here they are
:
Wrong Link in the first Post of the Thread:
The File-Attachement points to a file named 'instructionsupdate2.txt' which unfortunately is the 1.2 Version and not the newest 1.3 Version.
Script Error in the 1.2 Version:
Search this Code in instructionsupdate2.txt
PHP Code:
if ($userid==X) and ($bbuserinfo[userid]!=X) {
echo "<p>You cannot delete this Admin.</p>";
cpfooter();
exit;
}
This refers to users.php at about line 300. As you can see while reading this thread, the code causes problems to the Users. This is, because the hint that your user-ID is 1 is missing and two brackets () are missing. The right Code is:
PHP Code:
if (($userid==1) and ($bbuserinfo[userid]!=1)) {
echo "<p>You cannot delete this Admin.</p>";
cpfooter();
exit;
}
This solves the problems discussed over the last 5 pages, perhaps a Mod could delete those posts as the Solution is here and the thread gets too complicated.
With friendly greetings, TheSaint-AeD
P. S.: Now I will hack the files to 1.3 Version, I'll keep you informed if I encounter any Problems, even if they are the same.