View Single Post
  #22  
Old 3rd March 2013, 22:30
Daz's Avatar
Daz Daz is offline
Senior Member
 
Join Date: Dec 2009
United Kingdom
Posts: 124
Default
Great little mod, I made a few badly needed changes to it.. The most important change I made was this:

outputinfo.php

find:
PHP Code:
  if ((!$CURUSER OR $usergroups['canshout'] != 'yes'))
  {
    exit (
'<div style="background: #FFECCE; border: 1px solid #EA5F00; padding-left: 5px;">' $lang->global['shouterror'] . '</div>');
    return 
1;
  } 

Change to:
PHP Code:
  if ((!$CURUSER OR $usergroups['canstaffpanel'] != 'yes'))
  {
    exit (
'<div style="background: #FFECCE; border: 1px solid #EA5F00; padding-left: 5px;">Nice try! You are not authorized to use the Staff Shout!</div>');
    return 
1;
  } 
Otherwise anyone can see staffbox, by going to /staffbox/outputinfo.php

Last edited by Daz; 3rd March 2013 at 22:59. Reason: small change :)
Reply With Quote
The Following 2 Users Say Thank You to Daz For This Useful Post:
FENIX (5th March 2013), Marco (6th March 2013)