You are here

function spamicide_update_7000 in Spamicide 7

7000 - Adds spamicide_dir to variables table making it configurable

File

./spamicide.install, line 141
This module provides yet another tool to eliminate spam.

Code

function spamicide_update_7000() {
  $ret = array();
  if (is_null(variable_get('spamicide_dir'))) {
    variable_set('spamicide_dir', 'spamicide');
  }
  return $ret;
}