function advpoll_update_7 in Advanced Poll 5
Same name and namespace in other branches
- 6 advpoll.install \advpoll_update_7()
- 6.2 advpoll.install \advpoll_update_7()
Missing conversion code for Drupal 4.7 -> 5 upgrade.
This will have no effect on an existing Drupal 5 installation.
File
- ./
advpoll.install, line 276
Code
function advpoll_update_7() {
$ret = array();
$ret[] = update_sql("UPDATE {node} SET type = 'advpoll_binary' WHERE type = 'advpoll-binary'");
$ret[] = update_sql("UPDATE {node} SET type = 'advpoll_ranking' WHERE type = 'advpoll-ranking'");
return $ret;
}