예제 #1
0
파일: search.php 프로젝트: nProfessor/Mytb
	function DelayStemIndex($ID)
	{
		$DB = CDatabase::GetModuleConnection('search');
		$ID = intval($ID);

		$DB->Query("
			delete from b_search_content_stem
			where SEARCH_CONTENT_ID = -$ID
		");
		$DB->Query("
			insert into b_search_content_stem
			(SEARCH_CONTENT_ID, LANGUAGE_ID, STEM, TF".(BX_SEARCH_VERSION > 1? ",PS": "").")
			values
			(-$ID, 'en', 0, 0".(BX_SEARCH_VERSION > 1? ",0": "").")
		");

		CSearch::_addAgent();
	}