X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FTemplate.pm;h=8682c7e9abb37cf009e9f4478f4f63b6929ac37b;hb=37d14c11afd10049be58467770499b25268c1364;hp=903ea90d8e8276a3d6d401a2ff4a95c48312fa22;hpb=7e0814bb34ae9e6c424aa10e37ccb9ca4541fc49;p=kivitendo-erp.git diff --git a/SL/Template.pm b/SL/Template.pm index 903ea90d8..8682c7e9a 100644 --- a/SL/Template.pm +++ b/SL/Template.pm @@ -19,7 +19,6 @@ use SL::Template::LaTeX; use SL::Template::OpenDocument; use SL::Template::PlainText; use SL::Template::ShellCommand; -use SL::Template::XML; sub create { my %params = @_; @@ -47,12 +46,12 @@ sub available_templates { my @alldir = sort grep { -d ($::lx_office_conf{paths}->{templates} . "/$_") && !/^\.\.?$/ - && !m/\.(?:html|tex|sty|odt|xml|txb)$/ + && !m/\.(?:html|tex|sty|odt)$/ && !m/^(?:webpages$|print$|mail$|\.)/ } keys %dir_h; tie %dir_h, 'IO::Dir', "$::lx_office_conf{paths}->{templates}/print"; - my @allmaster = ('Standard', sort grep { -d ("$::lx_office_conf{paths}->{templates}/print" . "/$_") && !/^\.\.?$/ && !/^Standard$/ } keys %dir_h); + my @allmaster = (sort grep { -d ("$::lx_office_conf{paths}->{templates}/print" . "/$_") && !/^\.\.?$/ && !/^Standard$/ } keys %dir_h); return ( print_templates => \@alldir,