function forum_update_7011
Update {forum_index} so that only published nodes are indexed.
Related topics
Archivo
- drupal-7.x/
modules/ forum/ forum.install, line 447 - Install, update, and uninstall functions for the Forum module.
Código
function forum_update_7011() {
$select = db_select('node', 'n')->fields('n', array('nid'))->condition('status', 0);
db_delete('forum_index')->condition('nid', $select, 'IN')->execute();
}