From: Petr Skoda Date: Tue, 24 Nov 2009 14:31:34 +0000 (+0000) Subject: MDL-20948 proper removal of cached pasword hashes just in case upgrading from <1.9.7 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=bdebf74c767503d4a8821099dab5df475ec4cf02;p=moodle.git MDL-20948 proper removal of cached pasword hashes just in case upgrading from <1.9.7 --- diff --git a/auth/cas/db/install.php b/auth/cas/db/install.php index ca412b1f82..f97771c86d 100644 --- a/auth/cas/db/install.php +++ b/auth/cas/db/install.php @@ -5,7 +5,7 @@ function xmldb_auth_cas_install() { // upgrade from 1.9.x, introducing version.php - // remove cached passowrds, we do not need them for this plugin + // remove cached passwords, we do not need them for this plugin $DB->set_field('user', 'password', 'not cached', array('auth'=>'cas')); }