From 3f23bdfaef8eb6bb092b72ea741b63e243f8ab19 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 29 Mar 2008 08:15:45 +0000 Subject: okay. and thank goodness its on 1.9. really fix error reporting on quick package order this time. have to change cust cancel popup slightly too, but its for the better (easier custnum parsing). and lastly make it easier for reason selection to be reused without stickiness-on-errors being a big pain in the ass --- httemplate/elements/popup_link-cust_main.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'httemplate/elements/popup_link-cust_main.html') diff --git a/httemplate/elements/popup_link-cust_main.html b/httemplate/elements/popup_link-cust_main.html index 3b1363f49..a927f39f2 100644 --- a/httemplate/elements/popup_link-cust_main.html +++ b/httemplate/elements/popup_link-cust_main.html @@ -41,7 +41,8 @@ if (ref(@_[0]) eq 'HASH') { ($action, $label, $actionlabel, $color, $cust_main) = @_; } -$action .= '?'. $cust_main->custnum; +$action .= ( $action =~ /\?/ ) ? ';' : '?'; +$action .= 'custnum='. $cust_main->custnum; <% $cust_main -- cgit v1.2.1