You are here

function site_verify_update_2 in Site verification 6

Same name and namespace in other branches
  1. 7.2 site_verify.install \site_verify_update_2()
  2. 7 site_verify.install \site_verify_update_2()

File

./site_verify.install, line 82
Install, update and uninstall functions for the site_verify module.

Code

function site_verify_update_2() {
  $ret = array();
  $ret[] = update_sql("UPDATE {site_verify} SET engine = 'bing' WHERE engine = 'live_search'");
  return $ret;
}