| Versionen | |
|---|---|
| drupal6 – drupal7 | search_touch_node($nid) |
Change a node's changed timestamp to 'now' to force reindexing.
$nid The nid of the node that needs reindexing.
modules/
<?php
function search_touch_node($nid) {
db_query("UPDATE {search_dataset} SET reindex = %d WHERE sid = %d AND type = 'node'", time(), $nid);
}
?>
Kommentare
Kommentar hinzufügen