Yup i've had this same problem with 7.6 to save you all registering upto Nukefixes here's the fix.
In footer.php find:
Code:
function foot() {
global $prefix, $user_prefix, $db, $index, $user, $cookie, $storynum, $user, $cookie, $Default_Theme, $foot1, $foot2, $foot3, $foot4, $home, $module, $name;
change to:
Code:
function foot() {
global $prefix, $user_prefix, $db, $index, $user, $cookie, $storynum, $user, $cookie, $Default_Theme, $foot1, $foot2, $foot3, $foot4, $home, $module, $name, $admin;
also find:
Code:
if ($module == 1 AND file_exists("modules/$name/admin/panel.php")) {
change to:
Code:
if ($module == 1 AND (file_exists("modules/$name/admin/panel.php") && is_admin($admin))) {
Now this table (panel.php) will only be included if, it exists, and the user is an admin.