]> git.mjollnir.org Git - moodle.git/commitdiff
Added missing $
authorpaca70 <paca70>
Thu, 24 Apr 2003 17:21:54 +0000 (17:21 +0000)
committerpaca70 <paca70>
Thu, 24 Apr 2003 17:21:54 +0000 (17:21 +0000)
lib/moodlelib.php

index ecfbcb11d443343a5bcb24b31dddbbf4451d5ed9..6e683b18fcdaff848f1b21163e806457110f0f42 100644 (file)
@@ -1260,7 +1260,7 @@ function moodle_strtolower ($string, $encoding='') {
         if($encoding===''){
            return mb_strtolower($string);          //use multibyte support with default encoding
         } else {
-           return mb_strtolower($string,encoding); //use given encoding
+           return mb_strtolower($string,$encoding); //use given encoding
         }   
     } else {
         return strtolower($string);                // use common function what rely on current locale setting