From: Rossiani Wijaya Date: Wed, 13 Jan 2010 07:24:41 +0000 (+0000) Subject: change error message language string from 'alphanumerical' to 'invalidusername' ... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=50256f9cd1dffc5ef783adb2e2b3f46268d7830f;p=moodle.git change error message language string from 'alphanumerical' to 'invalidusername' - MDL-16919 --- diff --git a/login/index.php b/login/index.php index 6d17064b76..0ee8371e41 100644 --- a/login/index.php +++ b/login/index.php @@ -107,7 +107,7 @@ if (empty($CFG->usesid) and $testcookies and (get_moodle_cookie() == '')) { / if (is_enabled_auth('none') && empty($CFG->extendedusernamechars)) { $string = clean_param($frm->username, PARAM_USERNAME); if (strcmp($frm->username, $string)) { - $errormsg = get_string('username').': '.get_string("alphanumerical"); + $errormsg = get_string('username').': '.get_string("invalidusername"); $errorcode = 2; $user = null;