From: Carsten K. <car...@us...> - 2002-01-09 00:03:53
|
Update of /cvsroot/phpwiki/phpwiki/lib/plugin In directory usw-pr-cvs1:/tmp/cvs-serv22473 Modified Files: HelloWorld.php Log Message: Minor fix for one string which shouldn't be gettext()ed. Index: HelloWorld.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/HelloWorld.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** HelloWorld.php 2002/01/07 04:14:20 1.5 --- HelloWorld.php 2002/01/09 00:03:50 1.6 *************** *** 39,44 **** // Any text that is returned will not be further transformed, // so use html where necessary. ! $html = Element('tt', __sprintf("%s %s" .THE_END, $salutation, ! do_transform($name, 'LinkTransform'))); return $html; } --- 39,45 ---- // Any text that is returned will not be further transformed, // so use html where necessary. ! $html = Element('tt', sprintf('%s %s', $salutation, ! do_transform($name, 'LinkTransform')) ! .THE_END); return $html; } |