From fd634d60f8abc490384a5310bb2dd1a0592b8443 Mon Sep 17 00:00:00 2001 From: sejin7940 Date: Tue, 22 Jan 2019 06:36:56 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=EA=B3=B5=EA=B0=9C=20/=20=EB=B9=84=EB=B0=80?= =?UTF-8?q?=20/=20IP=20=EA=B2=80=EC=83=89=20=EB=93=B1=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=95=EC=9D=B4=20=EC=9C=A0=EC=A7=80?= =?UTF-8?q?=EB=90=98=EC=96=B4=20=EA=B2=80=EC=83=89=20=EC=95=88=20=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=ED=98=84=EC=83=81=20=EC=A1=B0=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 페이지 이외의 페이지 상태에서 상단의 공개 | 비밀 | 임시 눌렀을때 검색이 다시 되지만 페이지번호가 유지되어 검색결과가 안 나오는 상황 발생 또한 글 목록에서 IP 주소 클릭시 해당 IP 로 검색이 되지만 마찬가지로 페이징 초기화가 되어있지 않아 기존 페이지번호가 유지되어 검색결과가 안 나오는 상황 발생 --- modules/document/tpl/document_list.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/document/tpl/document_list.html b/modules/document/tpl/document_list.html index 3ff2dfe0d0..cd5f962fcd 100644 --- a/modules/document/tpl/document_list.html +++ b/modules/document/tpl/document_list.html @@ -12,11 +12,11 @@ {$lang->all}({number_format($total_count)}) | - {$status_name_list['PUBLIC']}({number_format($total_count)}) + {$status_name_list['PUBLIC']}({number_format($total_count)}) | - {$status_name_list['SECRET']}({number_format($total_count)}) + {$status_name_list['SECRET']}({number_format($total_count)}) | - {$status_name_list['TEMP']}({number_format($total_count)}) + {$status_name_list['TEMP']}({number_format($total_count)}) {$lang->help} | {$lang->cmd_declared_list} @@ -53,7 +53,7 @@ {$oDocument->get('readed_count')} {$oDocument->get('voted_count')}/{$oDocument->get('blamed_count')} {$oDocument->getRegdate("Y-m-d H:i")} - {$oDocument->get('ipaddress')} + {$oDocument->get('ipaddress')} {$status_name_list[$oDocument->get('status')]} From 44fe8bf353cbf4faaba05384ee762af4768b92cf Mon Sep 17 00:00:00 2001 From: sejin7940 Date: Tue, 22 Jan 2019 06:39:04 +0900 Subject: [PATCH 2/4] =?UTF-8?q?=EC=8B=A0=EA=B3=A0=EB=AA=A9=EB=A1=9D?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EA=B3=B5=EA=B0=9C~=EC=9E=84=EC=8B=9C=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20=ED=8E=98=EC=9D=B4=EC=A7=95=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=EC=95=88=20=EB=90=98=EB=8A=94=20=ED=98=84?= =?UTF-8?q?=EC=83=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 문서목록과 마찬가지로 신고목록에서도 공개~임시까지의 선택에 페이징 초기화 안 되는 현상 존재 --- modules/document/tpl/declared_list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/document/tpl/declared_list.html b/modules/document/tpl/declared_list.html index 41bdce1cce..b53641d4e7 100644 --- a/modules/document/tpl/declared_list.html +++ b/modules/document/tpl/declared_list.html @@ -15,11 +15,11 @@ {$lang->all} | - {$status_name_list['PUBLIC']} + {$status_name_list['PUBLIC']} | - {$status_name_list['SECRET']} + {$status_name_list['SECRET']} | - {$status_name_list['TEMP']} + {$status_name_list['TEMP']} {$lang->help} | {$lang->cmd_declared_list}({number_format($total_count)}) From c1592753da364983933f0ed9855535e0a901ccd5 Mon Sep 17 00:00:00 2001 From: sejin7940 Date: Tue, 22 Jan 2019 06:41:59 +0900 Subject: [PATCH 3/4] =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EB=AA=A9=EB=A1=9D?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=EC=95=88=20=EB=90=98=EB=8A=94=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 글 목록과 마찬가지로 관리자페이지의 댓글목록에서 공개~발행완료 까지는 페이지 초기화가 안 되고 목록에서 IP 주소 또한 페이지 초기화가 안 됨 --- modules/comment/tpl/comment_list.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/comment/tpl/comment_list.html b/modules/comment/tpl/comment_list.html index 40f8be1283..77384f62e9 100644 --- a/modules/comment/tpl/comment_list.html +++ b/modules/comment/tpl/comment_list.html @@ -11,13 +11,13 @@ {$lang->all}({number_format($total_count)}) | - {$secret_name_list['N']}({number_format($total_count)}) + {$secret_name_list['N']}({number_format($total_count)}) | - {$secret_name_list['Y']}({number_format($total_count)}) + {$secret_name_list['Y']}({number_format($total_count)}) | - {$lang->published_name_list['N']}({number_format($total_count)}) + {$lang->published_name_list['N']}({number_format($total_count)}) | - {$lang->published_name_list['Y']}({number_format($total_count)}) + {$lang->published_name_list['Y']}({number_format($total_count)}) | {$lang->cmd_declared_list} | @@ -56,7 +56,7 @@ {$val->getNickName()} {number_format($val->get('voted_count'))}/{number_format($val->get('blamed_count'))} {(zdate($val->regdate,"Y-m-d\nH:i:s"))} - {$val->ipaddress} + {$val->ipaddress} {$secret_name_list['Y']}{$secret_name_list['N']} {$lang->published_name_list['Y']}{$lang->published_name_list['N']} From 70dc4f5937a5e674febc62eeda848a47e1c5f010 Mon Sep 17 00:00:00 2001 From: sejin7940 Date: Tue, 22 Jan 2019 06:43:44 +0900 Subject: [PATCH 4/4] =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EB=AA=A9=EB=A1=9D?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 관리자페이지 파일목록에서 유효/대기 와 목록의 IP 주소 페이지 초기화 오류 수정 --- modules/file/tpl/file_list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/file/tpl/file_list.html b/modules/file/tpl/file_list.html index 742ae28832..8fad62eb30 100644 --- a/modules/file/tpl/file_list.html +++ b/modules/file/tpl/file_list.html @@ -15,9 +15,9 @@

{$lang->file} {$lang->all}({number_format($total_count)}) | - {$lang->is_valid}({number_format($total_count)}) + {$lang->is_valid}({number_format($total_count)}) | - {$lang->is_stand_by}({number_format($total_count)}) + {$lang->is_stand_by}({number_format($total_count)}) {$lang->help} {$lang->delete} @@ -86,7 +86,7 @@

{$lang->file} {zdate($val->regdate,"Y-m-d H:i")} - {$val->ipaddress} + {$val->ipaddress} {$lang->is_valid}{$lang->is_stand_by}