]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed my own stupidities...
authordefacer <defacer>
Wed, 28 Apr 2004 15:21:38 +0000 (15:21 +0000)
committerdefacer <defacer>
Wed, 28 Apr 2004 15:21:38 +0000 (15:21 +0000)
lang/el/fonts/CREDITS.txt [new file with mode: 0644]
lang/el/fonts/lang_decode.php

diff --git a/lang/el/fonts/CREDITS.txt b/lang/el/fonts/CREDITS.txt
new file mode 100644 (file)
index 0000000..732883d
--- /dev/null
@@ -0,0 +1,8 @@
+-------
+CREDITS
+-------
+
+The Thryomanes Unicode true type font was created by Herman Miller (http://www.io.com/~hmiller/)
+who kindly released it for free. Many thanks to Herman for providing this font, which enables Moodle
+to come bundled with support for Greek graphs.
+
index a1b437fddc9859e201492555aaa02fb9e61e41b8..d5f657c4517b59865be88cb72f47de16e24dc7a3 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 
 function lang_decode($s) {
-/*
     $len = strlen($s);
     $out = '';
     for($i=0; $i < $len; $i++) {
@@ -9,8 +8,6 @@ function lang_decode($s) {
         $out .= $ch > 128 && $ch < 256 ? '&#'.(720 + $ch).';' : chr($ch);
     }
     return $out;
-*/
-    return iconv('ISO-8859-7', 'UTF-8', $s);
 }
 
 ?>