function site_verify_update_2 in Site verification 7
Same name and namespace in other branches
- 6 site_verify.install \site_verify_update_2()
- 7.2 site_verify.install \site_verify_update_2()
Update engine Live Search to Bing.
File
- ./
site_verify.install, line 74 - Install, update and uninstall functions for the site_verify module.
Code
function site_verify_update_2() {
db_update('site_verify')
->fields(array(
'engine' => 'bing',
))
->condition('engine', 'live_search')
->execute();
}