From 5a3c2b628d54bfca9dcc2fec45de8d443299faf7 Mon Sep 17 00:00:00 2001 From: thisgun Date: Fri, 27 Dec 2019 09:54:41 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=EC=9E=98=EB=AA=BB=EB=90=9C=20=EC=98=A4?= =?UTF-8?q?=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/member/basic/register_form.skin.php | 6 ++++-- theme/basic/skin/member/basic/register_form.skin.php | 7 ++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/skin/member/basic/register_form.skin.php b/skin/member/basic/register_form.skin.php index eb995f53f..72b2596e6 100644 --- a/skin/member/basic/register_form.skin.php +++ b/skin/member/basic/register_form.skin.php @@ -98,15 +98,17 @@ add_stylesheet('',
  • - + + diff --git a/theme/basic/skin/member/basic/register_form.skin.php b/theme/basic/skin/member/basic/register_form.skin.php index eb995f53f..cbd17aed0 100644 --- a/theme/basic/skin/member/basic/register_form.skin.php +++ b/theme/basic/skin/member/basic/register_form.skin.php @@ -98,15 +98,16 @@ add_stylesheet('',
  • - + From a5e553147148fa17e93fea05c39dd0dadd34ccfc Mon Sep 17 00:00:00 2001 From: thisgun Date: Fri, 27 Dec 2019 16:05:04 +0900 Subject: [PATCH 2/5] =?UTF-8?q?php=20=EB=AC=B8=EB=B2=95=20each=20deprecate?= =?UTF-8?q?d=20=EC=97=90=20=EB=8C=80=ED=95=9C=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/uri.lib.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/uri.lib.php b/lib/uri.lib.php index 29c42abc7..99eda3239 100644 --- a/lib/uri.lib.php +++ b/lib/uri.lib.php @@ -119,9 +119,11 @@ function short_url_clean($string_url, $add_qry=''){ $return_url = ''; parse_str($url['query'], $vars); - + + /* // 예) Array ( [scheme] => http [host] => sir.kr [path] => /bbs/board.php [query] => wr_id=1110870&bo_table=cm_free&cpage=1 [fragment] => c_1110946 ) - //while(list($k,$v) = each($vars)) $page_name .= "/".$v; + foreach($vars as $k => $v) { $page_name .= "/".$v; } + */ if( $page_name === 'write' ){ $vars['action'] = 'write'; @@ -173,8 +175,8 @@ function short_url_clean($string_url, $add_qry=''){ if( $add_qry ){ $add_param .= $add_param ? '&'.$add_qry : '?'.$add_qry; } - - while(list($k,$v) = each($s)) $return_url .= '/'.$v; + + foreach($s as $k => $v) { $return_url .= '/'.$v; } return $host.$return_url.$add_param.$fragment; } From ccfe419bbd8d244ff34fbbe176acbd552df3f186 Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 7 Jan 2020 14:34:50 +0900 Subject: [PATCH 3/5] =?UTF-8?q?54=EB=B2=84=EC=A0=84=20=EC=9E=98=EB=AA=BB?= =?UTF-8?q?=EB=90=9C=20hook=20=EC=9D=B4=EB=B2=A4=ED=8A=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- head.php | 2 ++ head.sub.php | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/head.php b/head.php index bbf345c19..894187c5b 100644 --- a/head.php +++ b/head.php @@ -1,6 +1,8 @@ Date: Tue, 7 Jan 2020 14:37:00 +0900 Subject: [PATCH 4/5] =?UTF-8?q?5.4=20=EB=B2=84=EC=A0=84=20=EB=AA=A8?= =?UTF-8?q?=EB=B0=94=EC=9D=BC=20=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EC=8A=A4?= =?UTF-8?q?=ED=82=A8=20=EB=82=B4=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/skin/board/basic/write.skin.php | 2 +- mobile/skin/board/gallery/write.skin.php | 2 +- theme/basic/mobile/skin/board/basic/write.skin.php | 2 +- theme/basic/mobile/skin/board/gallery/write.skin.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mobile/skin/board/basic/write.skin.php b/mobile/skin/board/basic/write.skin.php index 7c350075c..d8fa12fc3 100644 --- a/mobile/skin/board/basic/write.skin.php +++ b/mobile/skin/board/basic/write.skin.php @@ -76,7 +76,7 @@ add_stylesheet('', 0
    - +
    diff --git a/mobile/skin/board/gallery/write.skin.php b/mobile/skin/board/gallery/write.skin.php index 7cb0a19cd..d8fa12fc3 100644 --- a/mobile/skin/board/gallery/write.skin.php +++ b/mobile/skin/board/gallery/write.skin.php @@ -76,7 +76,7 @@ add_stylesheet('', 0
    - +
    diff --git a/theme/basic/mobile/skin/board/basic/write.skin.php b/theme/basic/mobile/skin/board/basic/write.skin.php index 7c350075c..d8fa12fc3 100644 --- a/theme/basic/mobile/skin/board/basic/write.skin.php +++ b/theme/basic/mobile/skin/board/basic/write.skin.php @@ -76,7 +76,7 @@ add_stylesheet('', 0
    - +
    diff --git a/theme/basic/mobile/skin/board/gallery/write.skin.php b/theme/basic/mobile/skin/board/gallery/write.skin.php index 7cb0a19cd..d8fa12fc3 100644 --- a/theme/basic/mobile/skin/board/gallery/write.skin.php +++ b/theme/basic/mobile/skin/board/gallery/write.skin.php @@ -76,7 +76,7 @@ add_stylesheet('', 0
    - +
    From aec86e4360637cb810e4300fc826c9dd6ce0c4e3 Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 7 Jan 2020 14:47:58 +0900 Subject: [PATCH 5/5] =?UTF-8?q?=EB=B2=84=EC=A0=84=205.4.1.4=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.php b/config.php index 82b99c2e8..fdb260be8 100644 --- a/config.php +++ b/config.php @@ -5,7 +5,7 @@ ********************/ define('G5_VERSION', '그누보드5'); -define('G5_GNUBOARD_VER', '5.4.1.3'); +define('G5_GNUBOARD_VER', '5.4.1.4'); // 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음 define('_GNUBOARD_', true);