From: Moritz Bunkus Date: Fri, 18 Jan 2008 09:22:48 +0000 (+0000) Subject: Die Funktion strip_base darf nur auf einer Kopie des Strings arbeiten, nicht aber... X-Git-Tag: release-2.6.0beta1~338 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=905deb548fe53f65324cea5a2a45f37d65795baa;p=kivitendo-erp.git Die Funktion strip_base darf nur auf einer Kopie des Strings arbeiten, nicht aber auf dem Alias, das noch in @_ steht. --- diff --git a/locale/de/locales.pl b/locale/de/locales.pl index da86e0249..d876ddc57 100755 --- a/locale/de/locales.pl +++ b/locale/de/locales.pl @@ -640,8 +640,10 @@ sub search_translated_htmlfiles_wo_master { } sub strip_base { - $_[0] =~ s|^../../||; - $_[0] =~ s|templates/webpages/||; + my $s = "$_[0]"; # Create a copy of the string. - return $_[0]; + $s =~ s|^../../||; + $s =~ s|templates/webpages/||; + + return $s; }