mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@252 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9133108828
commit
2c67aa349a
7 changed files with 58 additions and 2 deletions
|
|
@ -13,6 +13,7 @@
|
|||
$lang->denied_ip = "금지 IP";
|
||||
$lang->interval = "스팸 처리 간격";
|
||||
$lang->limit_count = "제한수";
|
||||
$lang->check_trackback = "트랙백 검사";
|
||||
$lang->word = "단어";
|
||||
|
||||
// 설명문
|
||||
|
|
@ -20,9 +21,11 @@
|
|||
$lang->about_limit_count = "지정된 시간내에 제한수를 넘겨서 글 작성을 시도하면 스팸으로 인식, IP를 금지 시킵니다";
|
||||
$lang->about_denied_ip = "127.0.0.* 와 같이 * 로 정해진 패턴의 IP 대역을 모두 금지 시킬 수 있습니다";
|
||||
$lang->about_denied_word = "금지 단어로 등록되면 해당 단어가 있는 글은 등록을 금지 시킬 수 있습니다";
|
||||
$lang->about_check_trackback = "한 글에 한 IP에만 트랙백을 허용할 수 있습니다";
|
||||
|
||||
// 메세지 출력용
|
||||
$lang->msg_alert_limited_by_config = '%s 초 이내에 글 작성은 금지 됩니다. 계속 시도하시면 금지 IP에 등록되실 수 있습니다';
|
||||
$lang->msg_alert_denied_word = '"%s"는 사용 금지된 단어입니다';
|
||||
$lang->msg_alert_registered_denied_ip = '금지 IP에 등록되셔서 정상적인 활동에 제한을 받게 되셨습니다. 문의는 사이트 관리자에게 해주시기 바랍니다';
|
||||
$lang->msg_alert_trackback_denied = '한 글에는 하나의 트랙백만 허용이 됩니다';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@
|
|||
**/
|
||||
function procInsertConfig() {
|
||||
// 기본 정보를 받음
|
||||
$args = Context::gets('interval','limit_count');
|
||||
$args = Context::gets('interval','limit_count','check_trackback');
|
||||
if($args->check_trackback!='Y') $args->check_trackback = 'N';
|
||||
|
||||
// module Controller 객체 생성하여 입력
|
||||
$oModuleController = &getController('module');
|
||||
|
|
|
|||
|
|
@ -17,6 +17,13 @@
|
|||
<tr>
|
||||
<td>{$lang->about_limit_count}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th rowspan="2">{$lang->check_trackback}</th>
|
||||
<td><input type="checkbox" name="check_trackback" value="Y" <!--@if($config->check_trackback=='Y')-->checked="true"<!--@end--> /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang->about_check_trackback}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{@getUrl('act','')}'" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue