function spamicide_update_6001 in Spamicide 6
#6001: 6.x-1.3 upgrade. Fix spamicide directories and rebuild all themes.
File
- ./
spamicide.install, line 134 - This module provides yet another tool to eliminate spam.
Code
function spamicide_update_6001() {
$return[] = array(
'success' => TRUE,
'query' => 'Successfully updated spamicide module',
);
variable_set('spamicide_administration_mode', 1);
variable_set('spamicide_log_attempts', 1);
drupal_rebuild_theme_registry();
return $return;
}