From: Carsten K. <car...@us...> - 2002-01-08 02:11:35
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv13774 Modified Files: stdlib.php Log Message: minor gettext fix Index: stdlib.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/stdlib.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -r1.68 -r1.69 *** stdlib.php 2002/01/07 18:42:40 1.68 --- stdlib.php 2002/01/08 02:11:32 1.69 *************** *** 66,70 **** array('rel' => (($CSS_DEFAULT == $key) ? 'stylesheet' : 'alternate stylesheet'), ! 'title' => _(htmlspecialchars($key)), 'href' => DataURL(htmlspecialchars($val)), 'type' => 'text/css'))."\n"; --- 66,70 ---- array('rel' => (($CSS_DEFAULT == $key) ? 'stylesheet' : 'alternate stylesheet'), ! 'title' => htmlspecialchars(_($key)), 'href' => DataURL(htmlspecialchars($val)), 'type' => 'text/css'))."\n"; |