Changeset 3677
- Timestamp:
- 02/07/06 11:49:43 (3 years ago)
- Files:
-
- wired/trunk/wired/files.c (modified) (1 diff)
- wired/trunk/wired/settings.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wired/trunk/wired/files.c
r3575 r3677 552 552 void wd_files_search(wi_string_t *query) { 553 553 wi_string_t *realpath; 554 555 if(wi_is_equal(wd_settings.searchmethod, WI_STR("index")) ) {554 555 if(wi_is_equal(wd_settings.searchmethod, WI_STR("index")) && wd_settings.index) { 556 556 wd_files_search_index(query); 557 557 } else { wired/trunk/wired/settings.c
r3551 r3677 108 108 wi_release(description); 109 109 wi_release(banner); 110 111 if(wi_is_equal(wd_settings.searchmethod, WI_STR("index")) && !wd_settings.index) { 112 wi_log_warn(WI_STR("Search method is \"index\" but \"index\" setting is missing, search method will revert to live")); 113 } 110 114 111 115 return result;
