Thread: Project U-232
View Single Post
  #20  
Old 2nd May 2011, 04:25
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
Well your using what looks like default U-232 V1 and trying to add V2 globals to it

PHP Code:
//== Add ALL staff names before promote them 
$INSTALLER09['staff']['allowed'] = array( 'BeetPete'       => 1,                                     
    
'Admin'       => 1,                                     
    
'Yourname'       => 1,                                     
    
'anothername'       => 1,                                     
    
'System' => 1                                     
    
); 
Should be

PHP Code:
//== Add ALL staff names before promote them 
$TBDEV['staff']['allowed'] = array( 'BeetPete'       => 1,                                     
'Admin'       => 1,                                     
'Yourname'       => 1,                                     
'anothername'       => 1,                                     
'System' => 1                                     
);