diff options
author | jeff <jeff> | 2007-07-18 03:24:25 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-07-18 03:24:25 +0000 |
commit | 53d68b31e5ec07704c53829548c537bac03b8894 (patch) | |
tree | 747ab1feb212559cb7531c25f8f69ff0da019344 /httemplate/edit | |
parent | 4bb0b0fb22e758581a19be702c9f82c7b16d71b2 (diff) |
svc_acct.dir should be editable with ACL (#1730)
Diffstat (limited to 'httemplate/edit')
-rwxr-xr-x | httemplate/edit/svc_acct.cgi | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/httemplate/edit/svc_acct.cgi b/httemplate/edit/svc_acct.cgi index e0610b22f..d4adbc9e5 100755 --- a/httemplate/edit/svc_acct.cgi +++ b/httemplate/edit/svc_acct.cgi @@ -326,10 +326,22 @@ Service # <% $svcnum ? "<B>$svcnum</B>" : " (NEW)" %><BR> </TD> </TR> % } - +% +%#dir +%if ( $part_svc->part_svc_column('dir')->columnflag eq 'F' +% || !$curuser->access_right('Edit home dir') +% ) { <INPUT TYPE="hidden" NAME="dir" VALUE="<% $svc_acct->dir %>"> +% } else { + + + <TR> + <TD ALIGN="right">Home directory</TD> + <TD><INPUT TYPE="text" NAME="dir" VALUE="<% $svc_acct->dir %>"></TD> + </TR> +% } % %#shell %my $shell = $svc_acct->shell; |