X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FMason.pm;h=e8e66e844187da0b3a545b48317c25eef29996c0;hb=bb119c4cc86e906f698a205437790bd8f96bb3d0;hp=b27c266a99746ee06136f182fa1b02a282b7548c;hpb=75e94e8dbf9f4053eaf403bc1c62f540f8efe31f;p=freeside.git diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm index b27c266a9..e8e66e844 100644 --- a/FS/FS/Mason.pm +++ b/FS/FS/Mason.pm @@ -133,10 +133,14 @@ if ( -e $addl_handler_use_file ) { ); use FS::Misc::eps2png qw( eps2png ); use FS::Report::FCC_477; + use FS::Report::Table; use FS::Report::Table::Monthly; + use FS::Report::Table::Daily; use FS::TicketSystem; use FS::NetworkMonitoringSystem; use FS::Tron qw( tron_lint ); + use FS::Locales; + use FS::Maketext qw( mt emt ); use FS::agent; use FS::agent_type; @@ -242,6 +246,7 @@ if ( -e $addl_handler_use_file ) { use FS::cust_category; use FS::prospect_main; use FS::contact; + use FS::phone_type; use FS::svc_pbx; use FS::discount; use FS::cust_pkg_discount; @@ -271,6 +276,16 @@ if ( -e $addl_handler_use_file ) { use FS::did_order; use FS::torrus_srvderive; use FS::torrus_srvderive_component; + use FS::areacode; + use FS::svc_dish; + use FS::svc_hardware; + use FS::hardware_class; + use FS::hardware_type; + use FS::hardware_status; + use FS::did_order_item; + use FS::msa; + use FS::rate_center; + use FS::cust_msg; # Sammath Naur if ( $FS::Mason::addl_handler_use ) { @@ -516,13 +531,15 @@ sub mason_interps { ${$_[0]} = "'". ${$_[0]}. "'"; }; + my $defang_sub = sub { + ${$_[0]} = $html_defang->defang(${$_[0]}); + }; + my $fs_interp = new HTML::Mason::Interp ( %interp, comp_root => $fs_comp_root, - escape_flags => { 'js_string' => $js_string_sub, - 'defang' => sub { - ${$_[0]} = $html_defang->defang(${$_[0]}); - }, + escape_flags => { 'js_string' => $js_string_sub, + 'defang' => $defang_sub, }, compiler => HTML::Mason::Compiler::ToObject->new( allow_globals => [qw(%session)],