X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FPresenter.pm;h=7b83e36934bdc51a382f1894542c208ab07b89eb;hb=071e5546e649fc0108f64adfb1d0f8356dbe2716;hp=36186c4ecb035cae164a0ffd3acd2ff5235535c6;hpb=3034fe61dd25acd1e5b0a9d4cfa4bccc2545731c;p=kivitendo-erp.git diff --git a/SL/Presenter.pm b/SL/Presenter.pm index 36186c4ec..7b83e3693 100644 --- a/SL/Presenter.pm +++ b/SL/Presenter.pm @@ -7,14 +7,19 @@ use parent qw(Rose::Object); use Carp; use Template; +use SL::Presenter::Chart; use SL::Presenter::CustomerVendor; use SL::Presenter::DeliveryOrder; use SL::Presenter::EscapedText; use SL::Presenter::Invoice; +use SL::Presenter::GL; use SL::Presenter::Order; use SL::Presenter::Part; use SL::Presenter::Project; use SL::Presenter::Record; +use SL::Presenter::RequirementSpec; +use SL::Presenter::RequirementSpecItem; +use SL::Presenter::RequirementSpecTextBlock; use SL::Presenter::SepaExport; use SL::Presenter::Text; use SL::Presenter::Tag; @@ -116,6 +121,7 @@ sub get_template { COMPILE_EXT => '.tcc', COMPILE_DIR => $::lx_office_conf{paths}->{userspath} . '/templates-cache', ERROR => 'templates/webpages/generic/exception.html', + ENCODING => 'utf8', }) || croak; return $self->{template};