adding the variable for subadmin restriction
This commit is contained in:
parent
023e2a6ab0
commit
44765c5dae
|
@ -9,3 +9,10 @@ CREATE TABLE IF NOT EXISTS `policy` (
|
||||||
PRIMARY KEY (`name`)
|
PRIMARY KEY (`name`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='The password policies for services';
|
) 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. '
|
||||||
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue