mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
12 lines
267 B
PHP
12 lines
267 B
PHP
<?php
|
|
|
|
function xmldb_auth_imap_install() {
|
|
global $CFG, $DB;
|
|
|
|
// upgrade from 1.9.x, introducing version.php
|
|
|
|
// remove cached passwords, we do not need them for this plugin
|
|
$DB->set_field('user', 'password', 'not cached', array('auth'=>'imap'));
|
|
|
|
}
|