X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FTemplate.pm;h=39157d2d2c9bf5b6ee74e47cfbe89bda171c956b;hb=8e5b1f0e363dd22883e931006b8ac414bad9bbc5;hp=903ea90d8e8276a3d6d401a2ff4a95c48312fa22;hpb=766f5705ecb9cd56adfbffd94c871959bb64c6fd;p=kivitendo-erp.git diff --git a/SL/Template.pm b/SL/Template.pm index 903ea90d8..39157d2d2 100644 --- a/SL/Template.pm +++ b/SL/Template.pm @@ -52,7 +52,7 @@ sub available_templates { } 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,