function tokenauth_update_7000 in Token authentication 7
Migrate tokenauth settings.
File
- ./
tokenauth.install, line 69 - Installation routines for the Token Authentication module.
Code
function tokenauth_update_7000() {
$text = variable_get('tokenauth_text', array());
if (!empty($text)) {
// Formerly the default format, no longer the case.
$text['format'] = 'filtered_html';
variable_set('tokenauth_text', $text);
}
}