summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorivan <ivan>2007-04-19 20:18:08 +0000
committerivan <ivan>2007-04-19 20:18:08 +0000
commit40f7d64fc5359802ea215b0a551f5239018ab381 (patch)
tree7f1fa2ce39ae033dcec5a3734cf7999a20268b0d /httemplate/elements
parentada4765272274926102654a0baee16bcd7379de7 (diff)
fix very strange "Undefined subroutine &FS::UI::Web::rooturl" with an explicit import. did i mention this was really really weird?
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/menu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html
index a58f25add..241449c07 100644
--- a/httemplate/elements/menu.html
+++ b/httemplate/elements/menu.html
@@ -120,14 +120,14 @@ foreach my $svcdb ( FS::part_svc->svc_tables() ) {
if scalar(@$sorts) > 1;
$report_svc{$title} =
- [ FS::UI::Web::svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
+ [ svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
'',
];
}
if ( $curuser->access_right('View/link unlinked services') ) {
$report_svc{"Unlinked $lcname"} =
- [ FS::UI::Web::svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
+ [ svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
"Pre-Freeside $lcname without a customer record",
];
}