| 5 search.module | search_dirty($word = NULL) |
| 6 search.module | search_dirty($word = NULL) |
| 7 search.module | search_dirty($word = NULL) |
| 8 search.module | search_dirty($word = NULL) |
Marks a word as dirty (or retrieves the list of dirty words). This is used during indexing (cron). Words which are dirty have outdated total counts in the search_total table, and need to be recounted.
File
- modules/
search/ search.module, line 249 - Enables site-wide keyword searching.
Code
<?php
function search_dirty($word = NULL) {
static $dirty = array();
if ($word !== NULL) {
$dirty[$word] = TRUE;
}
else {
return $dirty;
}
}
?>Login or register to post comments