Browse Source

[svn r12081] Fix an encoding bug

Julian Prud'homme 18 years ago
parent
commit
a07b6d9111
1 changed files with 1 additions and 1 deletions
  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 . ' ';
 }
 ?>