summaryrefslogtreecommitdiff
path: root/httemplate/elements/menubar.html
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-04-12 13:16:57 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-04-12 13:16:57 -0400
commit7afd80e3dfcaa34b04f693c40949d7408f7a7ac1 (patch)
treecdfb8eee2c2668d1b02d6d9c5671eca9e959143f /httemplate/elements/menubar.html
parent7ff902ccf499a8a2e8598d653dd958cf6a364b26 (diff)
RT# 79913 - added ability to mass transfer customers to new agent
Diffstat (limited to 'httemplate/elements/menubar.html')
-rw-r--r--httemplate/elements/menubar.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/httemplate/elements/menubar.html b/httemplate/elements/menubar.html
index c149043..ffe83ec 100644
--- a/httemplate/elements/menubar.html
+++ b/httemplate/elements/menubar.html
@@ -52,7 +52,12 @@ while (@_) {
}
- push @html, qq!<A HREF="$url_base$url" $style>$item</A>!;
+ if ($item eq 'popup') {
+ push @html, $url;
+ }
+ else {
+ push @html, qq!<A HREF="$url_base$url" $style>$item</A>!;
+ }
}