mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-12 11:43:01 +02:00
bug 3104: less rights for admins (compared to webmaster). Now an admin can't:
* delete a webmaster * give webmaster/admin status to any user * change status of a webmaster/admin git-svn-id: http://piwigo.org/svn/trunk@29074 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -34,6 +34,12 @@ var truefalse = {
|
||||
'true':"{'Yes'|translate}",
|
||||
'false':"{'No'|translate}",
|
||||
};
|
||||
|
||||
var statusLabels = {
|
||||
{foreach from=$label_of_status key=status item=label}
|
||||
'{$status}' : '{$label|escape:javascript}',
|
||||
{/foreach}
|
||||
};
|
||||
{/footer_script}
|
||||
|
||||
{footer_script}{literal}
|
||||
@@ -260,11 +266,7 @@ jQuery(document).ready(function() {
|
||||
|
||||
user.email = user.email || '';
|
||||
|
||||
jQuery("#action select[name=status] option").each(function() {
|
||||
if (user.status == jQuery(this).val()) {
|
||||
user.statusLabel = jQuery(this).html();
|
||||
}
|
||||
});
|
||||
user.statusLabel = statusLabels[user.status];
|
||||
|
||||
/* Render the underscore template */
|
||||
_.templateSettings.variable = "user";
|
||||
|
||||
Reference in New Issue
Block a user