Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv3884/lib
Modified Files:
diff.php
Log Message:
Fix Carsten's example translation problem using new __sprintf() function.
Index: diff.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/diff.php,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** diff.php 2001/12/18 06:28:16 1.22
--- diff.php 2001/12/19 05:07:14 1.23
***************
*** 249,254 ****
$html = Element('p',
! sprintf(htmlspecialchars(_("Differences between %s and %s of %s.")),
! $new_link, $old_link, $page_link));
$otherdiffs='';
--- 249,254 ----
$html = Element('p',
! __sprintf("Differences between %s and %s of %s.",
! $new_link, $old_link, $page_link));
$otherdiffs='';
|