mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 15:49:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1200 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
46ceabcbb9
commit
3ed4516b8a
29 changed files with 618 additions and 0 deletions
17
modules/counter/tpl/js/spamfilter_admin.js
Normal file
17
modules/counter/tpl/js/spamfilter_admin.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @brief 금지 IP 삭제
|
||||
**/
|
||||
function doDeleteDeniedIP(ipaddress) {
|
||||
var fo_obj = xGetElementById('fo_denied_ip');
|
||||
fo_obj.ipaddress.value = ipaddress;
|
||||
procFilter(fo_obj, delete_denied_ip);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 금지 단어 삭제
|
||||
**/
|
||||
function doDeleteDeniedWord(word) {
|
||||
var fo_obj = xGetElementById('fo_denied_word');
|
||||
fo_obj.word.value = word;
|
||||
procFilter(fo_obj, delete_denied_word);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue