From 50256f9cd1dffc5ef783adb2e2b3f46268d7830f Mon Sep 17 00:00:00 2001 From: Rossiani Wijaya Date: Wed, 13 Jan 2010 07:24:41 +0000 Subject: [PATCH] change error message language string from 'alphanumerical' to 'invalidusername' - MDL-16919 --- login/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5