1
0

Improve usability by removing possibly dangerous options from personal configuration and moving them to the user management. Also rename the description options for those options.

Thanks to lendulado from the forums for these suggestions.
This commit is contained in:
Garvin Hicking
2007-03-22 10:27:18 +00:00
parent 66a0ae83ca
commit 32823fbd56
5 changed files with 31 additions and 13 deletions

@ -41,7 +41,8 @@
'description' => USERCONF_USERLEVEL_DESC . "\n" . USERLEVEL_OBSOLETE,
'type' => 'list',
'default' => $serendipity['permissionLevels'],
'permission' => 'personalConfigurationUserlevel'),
'permission' => 'personalConfigurationUserlevel',
'view' => 'dangerous'),
array('var' => 'groups',
'title' => USERCONF_GROUPS,
@ -50,7 +51,8 @@
'permission' => array('adminUsersMaintainOthers', 'adminUsersMaintainSame'),
'perm_mode' => 'or',
'default' => serendipity_getAllGroups(),
'flags' => array('groups')),
'flags' => array('groups'),
'view' => 'dangerous'),
array('var' => 'email',
'title' => USERCONF_EMAIL,
@ -103,14 +105,16 @@
'type' => 'bool',
'default' => false,
'permission' => 'personalConfigurationNoCreate',
'flags' => array('config')),
'flags' => array('config'),
'view' => 'dangerous'),
array('var' => 'right_publish',
'title' => USERCONF_ALLOWPUBLISH,
'description' => USERCONF_ALLOWPUBLISH_DESC,
'type' => 'bool',
'default' => true,
'permission' => 'personalConfigurationRightPublish')
'permission' => 'personalConfigurationRightPublish',
'view' => 'dangerous')
));
$res['defaults'] =
@ -151,4 +155,3 @@
));
return $res;
?>