git-svn-id: http://xe-core.googlecode.com/svn/trunk@871 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-02 03:15:03 +00:00
parent e2602f2880
commit 5e50a89993
5 changed files with 7 additions and 6 deletions

View file

@ -30,7 +30,8 @@
$comment_srl = trim($comment_srl_list[$i]); $comment_srl = trim($comment_srl_list[$i]);
if(!$comment_srl) continue; if(!$comment_srl) continue;
$this->deleteComment($comment_srl, true); $output = $this->deleteComment($comment_srl, true);
if(!$output->toBool()) return $output;
} }
$this->setMessage( sprintf(Context::getLang('msg_checked_comment_is_deleted'), $comment_count) ); $this->setMessage( sprintf(Context::getLang('msg_checked_comment_is_deleted'), $comment_count) );

View file

@ -1,4 +1,4 @@
<filter name="insert_shortcut" module="admin" act="procModuleAdminInsertShortCut" confirm_msg_code="confirm_submit"> <filter name="insert_shortcut" module="admin" act="procAdminInsertShortCut" confirm_msg_code="confirm_submit">
<form> <form>
<node target="module" required="true" /> <node target="module" required="true" />
</form> </form>

View file

@ -1,4 +1,4 @@
<!--%import("js/member_admin.js")--> <!--%import("js/module_admin.js")-->
<div style="margin-bottom:20px;"> <div style="margin-bottom:20px;">
<span <!--@if($act=='dispModuleAdminContent')-->style="font-weight:bold"<!--@end-->>[<a href="{getUrl('act','dispModuleAdminContent')}">{$lang->module_index}</a>]</span> <span <!--@if($act=='dispModuleAdminContent')-->style="font-weight:bold"<!--@end-->>[<a href="{getUrl('act','dispModuleAdminContent')}">{$lang->module_index}</a>]</span>

View file

@ -38,8 +38,8 @@
/** /**
* @brief 금지 IP삭제 * @brief 금지 IP삭제
**/ **/
function procDeleteDeniedIP() { function procSpamfilterAdminDeleteDeniedIP() {
$ipaddresSpamfilterAdmins = Context::get('ipaddress'); $ipaddress = Context::get('ipaddress');
return $this->deleteIP($ipaddress); return $this->deleteIP($ipaddress);
} }

View file

@ -1,4 +1,4 @@
<filter name="insert_denied_word" module="spamfilter" act="procInsertDeniedWord" confirm_msg_code="confirm_submit"> <filter name="insert_denied_word" module="spamfilter" act="procSpamfilterAdminInsertDeniedWord" confirm_msg_code="confirm_submit">
<form> <form>
<node target="word" required="true" minlength="4" maxlength="250" /> <node target="word" required="true" minlength="4" maxlength="250" />
</form> </form>