You are here

function captcha_update_6201 in CAPTCHA 6.2

Same name and namespace in other branches
  1. 7 captcha.install \captcha_update_6201()

Implementation of hook_update_N() Change the captcha points with the old text CAPTCHA, which was removed from the 6.x-2.x branch, to the simple math CAPTCHA.

File

./captcha.install, line 311
Install, update and uninstall functions for the CAPTCHA module.

Code

function captcha_update_6201() {
  $items = array();
  $items[] = update_sql("UPDATE {captcha_points} SET module = 'captcha', type = 'Math' WHERE module = 'text_captcha' AND type = 'Text';");
  return $items;
}