[freeside-commits] freeside/httemplate/elements menu.html, 1.22, 1.23
Ivan,,,
ivan at wavetail.420.am
Thu Apr 19 13:18:07 PDT 2007
Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail:/tmp/cvs-serv1083/httemplate/elements
Modified Files:
menu.html
Log Message:
fix very strange "Undefined subroutine &FS::UI::Web::rooturl" with an explicit import. did i mention this was really really weird?
Index: menu.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/elements/menu.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- menu.html 5 Apr 2007 22:01:13 -0000 1.22
+++ menu.html 19 Apr 2007 20:18:05 -0000 1.23
@@ -120,14 +120,14 @@
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",
];
}
More information about the freeside-commits
mailing list