fix disable_acl_changes on users
[freeside.git] / httemplate / edit / process / access_user.html
index 7aab799..d8a752a 100644 (file)
@@ -1,3 +1,6 @@
+% if ( FS::Conf->new->exists('disable_acl_changes') ) {
+  ACL changes disabled in public demo.
+% } else {
 %  if ( $cgi->param('_password') ne $cgi->param('_password2') ) {
 %    $cgi->param('error', "The passwords do not match");
 %    print $cgi->redirect(popurl(2) . "access_user.html?" . $cgi->query_string);
@@ -6,9 +9,17 @@
                  'table'       => 'access_user',
                  'viewall_dir' => 'browse',
                  'copy_on_empty' => [ '_password' ],
+                 'clear_on_error' => [ '_password', '_password2' ],
                  'process_m2m' => { 'link_table'   => 'access_usergroup',
                                     'target_table' => 'access_group',
                                   },
              )
 %>
 %   }
+% }
+<%init>
+
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
+</%init>