function node_update_7015 in Drupal 7
Enable node types that may have been erroneously disabled in Drupal 7.36.
Related topics
File
- modules/
node/ node.install, line 940 - Install, update and uninstall functions for the node module.
Code
function node_update_7015() {
db_update('node_type')
->fields(array(
'disabled' => 0,
))
->condition('base', 'node_content')
->execute();
}