function page_theme_update_6105 in Page Theme 6
Same name and namespace in other branches
- 7.2 page_theme.install \page_theme_update_6105()
- 7 page_theme.install \page_theme_update_6105()
Implementation of hook_update_N().
Drop editpage field which is no longer used.
File
- ./
page_theme.install, line 167 - Install, update and uninstall functions for the page_theme module.
Code
function page_theme_update_6105() {
$ret = array();
db_drop_field($ret, 'page_theme', 'editpage');
return $ret;
}