adding the variable for subadmin restriction

This commit is contained in:
Benjamin Sonntag 2010-04-19 10:03:51 +00:00
parent 023e2a6ab0
commit 44765c5dae
1 changed files with 7 additions and 0 deletions

View File

@ -9,3 +9,10 @@ CREATE TABLE IF NOT EXISTS `policy` (
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='The password policies for services';
INSERT IGNORE INTO `variable` (`name` ,`value` ,`comment`)
VALUES (
'subadmin_restriction', '',
'This variable set the way the account list works for accounts other than "admin" (2000). 0 (default) = admin other than admin/2000 can see their own account, but not the other one 1 = admin other than admin/2000 can see any account by clicking the ''show all accounts'' link. '
);