diff options
author | ivan <ivan> | 2010-06-17 01:14:45 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-06-17 01:14:45 +0000 |
commit | 607de99a5c55135dad851303e31506aeca0651fa (patch) | |
tree | 225f34b71c4243406a68687512286ae5ed625be3 /httemplate/edit/cust_main.cgi | |
parent | 826fba2bc6667c2db8993fb374f41bea5436d7f1 (diff) |
"Customer" not necessary as part of label, KISS
Diffstat (limited to 'httemplate/edit/cust_main.cgi')
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index efe04fa7f..57dc3597a 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -1,5 +1,5 @@ <% include('/elements/header.html', - "Customer $action", + $title, '', ' onUnload="myclose()"' #hmm, in billing.html ) %> @@ -313,8 +313,8 @@ my $error = $cgi->param('error'); $cgi->delete_all(); $cgi->param('error', $error); -my $action = $custnum ? 'Edit' : 'Add'; -$action .= ": ". $cust_main->name if $custnum; +my $title = $custnum ? 'Edit Customer' : 'Add Customer'; +$title .= ": ". $cust_main->name if $custnum; my $r = qq!<font color="#ff0000">*</font> !; |