diff options
author | ivan <ivan> | 2008-06-02 17:06:10 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-06-02 17:06:10 +0000 |
commit | d76656e264a41d7c3f272aa355a56d87f0f4e877 (patch) | |
tree | 6f4c68ed55f4ac8015fff9bd67df74a7f0cd563f /rt | |
parent | f7f6eb47c07f0280cb7f73f3dd42ffa423931a7d (diff) |
badly placed small_custview all of a sudden causing fatal errors?! wtf
Diffstat (limited to 'rt')
-rw-r--r-- | rt/lib/RT/URI/freeside/Internal.pm | 5 | ||||
-rw-r--r-- | rt/lib/RT/URI/freeside/XMLRPC.pm | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/rt/lib/RT/URI/freeside/Internal.pm b/rt/lib/RT/URI/freeside/Internal.pm index 0bc4c9010..bd7c42ccf 100644 --- a/rt/lib/RT/URI/freeside/Internal.pm +++ b/rt/lib/RT/URI/freeside/Internal.pm @@ -32,7 +32,8 @@ no warnings qw(redefine); use FS; use FS::UID qw(dbh); -use FS::CGI qw(popurl small_custview); +use FS::CGI qw(popurl); +use FS::UI::Web::small_custview qw(small_custview); use FS::Conf; use FS::Record qw(qsearchs qsearch dbdef); use FS::cust_main; @@ -115,7 +116,7 @@ sub email_search { #Subroutine sub small_custview { - return &FS::CGI::small_custview(@_); + return &FS::UI::Web::small_custview::small_custview(@_); } diff --git a/rt/lib/RT/URI/freeside/XMLRPC.pm b/rt/lib/RT/URI/freeside/XMLRPC.pm index a8a731fcd..916c20d7b 100644 --- a/rt/lib/RT/URI/freeside/XMLRPC.pm +++ b/rt/lib/RT/URI/freeside/XMLRPC.pm @@ -115,7 +115,7 @@ sub smart_search { #Subroutine sub small_custview { - return _XMLRPCRequest('CGI.small_custview', @_); + return _XMLRPCRequest('Web.UI.small_custview.small_custview', @_); } |