Sfoglia il codice sorgente

[svn r12081] Fix an encoding bug

Julian Prud'homme 18 anni fa
parent
commit
a07b6d9111
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      main/exercice/hotspot.inc.php

+ 1 - 1
main/exercice/hotspot.inc.php

@@ -61,6 +61,6 @@ foreach($file as $value)
 
 foreach($temp as $value)
 {
-	echo utf8_decode($value . ' ');
+	echo $value . ' ';
 }
 ?>