You are here

function spamicide_update_7001 in Spamicide 7

7001 - Adds spamicide_description to variables table making it configurable

File

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

Code

function spamicide_update_7001() {
  $ret = array();
  if (is_null(variable_get('spamicide_description'))) {
    variable_set('spamicide_description', 'To prevent automated spam submissions leave this field empty.');
  }
  return $ret;
}