]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix test failure with newer versions of PHP.
authorBruno Haible <bruno@clisp.org>
Mon, 30 Apr 2007 08:53:21 +0000 (08:53 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:46 +0000 (12:14 +0200)
gettext-tools/tests/ChangeLog
gettext-tools/tests/lang-php

index fa0156ba2385db242d99446006d41efda7b6d806..b3a2f1bab93d26a2e84b235f75de84a92544fc02 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-30  Bruno Haible  <bruno@clisp.org>
+
+        * lang-php: Remove 'echo' of printf result.
+        Patch by Jens Petersen <petersen@redhat.com>.
+
 2007-03-27  Bruno Haible  <bruno@clisp.org>
 
        * tstgettext.c (usage): Ask translators to specify a translation bug
index 9460680aae5059c02661f98c82b2a0b47e3c2410..6b5b7ee2be28157213b3c339907d3a7cd22b4ad9 100755 (executable)
@@ -15,7 +15,7 @@ cat <<\EOF > prog.php
   bindtextdomain ("prog", ".");
   echo _("'Your command, please?', asked the waiter.");
   echo "\n";
-  echo printf(_("%s is replaced by %s."), "FF", "EUR");
+  printf(_("%s is replaced by %s."), "FF", "EUR");
   echo "\n";
 ?>
 EOF