diff -r 0a74676a2f2f -r 68469a95658d includes/clientside/static/acl.js --- a/includes/clientside/static/acl.js Sat Jul 21 18:12:10 2007 -0400 +++ b/includes/clientside/static/acl.js Wed Jul 25 18:06:34 2007 -0400 @@ -316,7 +316,7 @@ act_desc = ( data.type == 'new' ) ? 'Create access rule' : 'Editing permissions'; target_type_t = ( data.target_type == 1 ) ? 'group' : 'user'; target_name_t = data.target_name; - var scope_type = ( data.page_id == false && data.namespace == false ) ? 'this entire site' : 'this page'; + var scope_type = ( data.page_id == false && data.namespace == false ) ? 'this entire site' : ( data.namespace == '__PageGroup' ) ? 'this group of pages' : 'this page'; html = '

'+act_desc+'

This panel allows you to edit what the '+target_type_t+' "'+target_name_t+'" can do on ' + scope_type + '. Unless you set a permission to "Deny", these permissions may be overridden by other rules.

'; parser = new templateParser(data.template.acl_field_begin); html += parser.run(); @@ -390,7 +390,7 @@ b.appendChild(document.createTextNode('Permissions updated')); note.appendChild(b); note.appendChild(document.createElement('br')); - note.appendChild(document.createTextNode('The permissions for '+data.target_name+' on this page have been updated successfully.')); + note.appendChild(document.createTextNode('The permissions for '+data.target_name+' on this page have been updated successfully. If you changed permissions that affect your user account, you may not see changes until you reload the page.')); note.appendChild(document.createElement('br')); var a = document.createElement('a'); a.href = 'javascript:void(0);';