스팸필터의 스팸엮인글 처리 부분을 강화 (제목/내용/블로그이름/내용등도 or 비교) 하고 C 클래스 ip 금지

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3268 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-12-08 02:13:41 +00:00
parent 9a1dfed6f7
commit f9a2015e23
5 changed files with 29 additions and 9 deletions

View file

@ -292,9 +292,13 @@
/**
* @brief 특정 ipaddress의 특정 시간대 내의 엮인글을 모두 삭제
**/
function deleteTrackbackSender($time, $ipaddress) {
function deleteTrackbackSender($time, $ipaddress, $url, $blog_name, $title, $excerpt) {
$obj->regdate = date("YmdHis",time()-$time);
$obj->ipaddress = $ipaddress;
$obj->url = $url;
$obj->blog_name = $blog_name;
$obj->title = $title;
$obj->excerpt = $excerpt;
$output = executeQueryArray('trackback.getRegistedTrackbacks', $obj);
if(!$output->data || !count($output->data)) return;