diff options
author | ivan <ivan> | 2007-09-23 23:17:34 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-09-23 23:17:34 +0000 |
commit | c991b925f38a78f2f312782aaf6a76c5dc77ba5a (patch) | |
tree | 4c542a149b8a667531fdf3b05417fe4588a09b8d | |
parent | f6b0dedfa909b5a957651ed508ae8dba7f9ad365 (diff) |
i think this is a bug; should not show the svc_www.usersvc selector unless it is non-fixed or non-blank, NOT non-fixed or blank
-rw-r--r-- | httemplate/edit/svc_www.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/svc_www.cgi b/httemplate/edit/svc_www.cgi index 56dd602a3..e19a4fa08 100644 --- a/httemplate/edit/svc_www.cgi +++ b/httemplate/edit/svc_www.cgi @@ -193,7 +193,7 @@ %print "</SELECT></TD></TR>"; % %if ( $part_svc->part_svc_column('usersvc')->columnflag ne 'F' -% || $part_svc->part_svc_column('usersvc')->columnvalue =~ /^\s*$/) { +% || $part_svc->part_svc_column('usersvc')->columnvalue !~ /^\s*$/) { % print '<TR><TD ALIGN="right">Username</TD><TD><SELECT NAME="usersvc" SIZE=1>'; % print '<OPTION VALUE="">(none)'; % foreach $_ (keys %svc_acct) { |