You are here

function spam_update_5 in Spam 5

Original version of spam_update_4 resulted in an error. _update_5 is added for anyone who may have already updated to version 1.1-1.

File

./spam.install, line 369

Code

function spam_update_5() {
  $rc = spam_update_4();

  // Kludge so we only execute update once, and don't return errors either way.
  if ($rc) {
    return $rc;
  }
  return array();
}