[freeside-commits] freeside/httemplate/elements menu.html, 1.20.2.1, 1.20.2.2
Ivan,,,
ivan at wavetail.420.am
Thu Apr 19 13:18:10 PDT 2007
Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail:/tmp/cvs-serv1085/httemplate/elements
Modified Files:
Tag: FREESIDE_1_7_BRANCH
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.20.2.1
retrieving revision 1.20.2.2
diff -u -d -r1.20.2.1 -r1.20.2.2
--- menu.html 20 Mar 2007 20:21:58 -0000 1.20.2.1
+++ menu.html 19 Apr 2007 20:18:08 -0000 1.20.2.2
@@ -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