[med-svn] r633 - trunk/community/website

hanska-guest at alioth.debian.org hanska-guest at alioth.debian.org
Sat Oct 6 08:44:48 UTC 2007


Author: hanska-guest
Date: 2007-10-06 08:44:48 +0000 (Sat, 06 Oct 2007)
New Revision: 633

Modified:
   trunk/community/website/locales.php
Log:
Fixing unrecognized &entities;


Modified: trunk/community/website/locales.php
===================================================================
--- trunk/community/website/locales.php	2007-10-06 08:38:08 UTC (rev 632)
+++ trunk/community/website/locales.php	2007-10-06 08:44:48 UTC (rev 633)
@@ -80,8 +80,8 @@
 				<tr>
 					<td style="text-align: center"><strong><?=$code?></strong></td>
 					<td style="text-align: center"><?=round($lang["complete"], 2)?>%</td>
-					<td><?=htmlentities($lang["author"])?></td>
-					<td><?=htmlentities($lang["team"])?></td>
+					<td><?=str_replace(array("<", ">"), array("&lt;", "&gt;"), $lang["author"])?></td>
+					<td><?=str_replace(array("<", ">"), array("&lt;", "&gt;") ,$lang["team"])?></td>
 				</tr>
 				<?php
 					}




More information about the debian-med-commit mailing list