From: Moritz Bunkus Date: Fri, 11 Jan 2008 13:25:53 +0000 (+0000) Subject: Eine Fehlermeldung ausgeben, wenn der veraltete Aufruf "parse_html_template2" gefunde... X-Git-Tag: release-2.6.0beta1~355 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=24119b61074bc5f9b27f0e0c917c8a7e528e2152;p=kivitendo-erp.git Eine Fehlermeldung ausgeben, wenn der veraltete Aufruf "parse_html_template2" gefunden wird. --- diff --git a/locale/de/locales.pl b/locale/de/locales.pl index a183f1c9c..580c6052f 100755 --- a/locale/de/locales.pl +++ b/locale/de/locales.pl @@ -350,8 +350,11 @@ sub scanfile { } # is this a template call? - if (/parse_html_template\s*\(\s*[\"\']([\w\/]+)\s*[\"\']/) { + if (/parse_html_template2?\s*\(\s*[\"\']([\w\/]+)\s*[\"\']/) { my $newfile = "$basedir/templates/webpages/$1_master.html"; + if (/parse_html_template2/) { + print "E: " . strip_base($file) . " is still using 'parse_html_template2' for " . strip_base($newfile) . ".\n"; + } if (-f $newfile) { # &scanhtmlfile($newfile); # &converthtmlfile($newfile);