]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed an unquoted string (merged from stable)
authormoodler <moodler>
Mon, 30 Aug 2004 17:47:21 +0000 (17:47 +0000)
committermoodler <moodler>
Mon, 30 Aug 2004 17:47:21 +0000 (17:47 +0000)
lib/moodlelib.php

index b9ece2903f9717ca26754d67117bdd088fd1c35d..44b1ccb3dc86dd942ede32ea82b0a14d2688bd65 100644 (file)
@@ -728,7 +728,7 @@ function create_user_record($username, $password) {
     global $REMOTE_ADDR, $CFG;
     //just in case check text case
     $username = trim(moodle_strtolower($username));
-    if (function_exists(auth_get_userinfo)) {
+    if (function_exists('auth_get_userinfo')) {
         if ($newinfo = auth_get_userinfo($username)) {
             foreach ($newinfo as $key => $value){
                 $newuser->$key = addslashes(stripslashes($value)); // Just in case