From 5713725fcbe922f3d332dfe9c7e1f5a6321b0f0b Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 21 May 2013 12:02:48 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=95=20=ED=95=A8?= =?UTF-8?q?=EC=88=98=20=EB=AC=B8=EA=B5=AC=20=EC=88=98=EC=A0=95,=20?= =?UTF-8?q?=EC=84=A0=ED=83=9D=EB=90=9C=20=EC=9D=84=20=EC=97=B4=EB=A6=B0=20?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.lib.php b/lib/common.lib.php index 24c4ac440..0ead30b53 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -37,7 +37,7 @@ function get_paging($write_pages, $cur_page, $total_page, $url, $add="") if ($cur_page != $k) $str .= ''.$k.'페이지'.PHP_EOL; else - $str .= '선택된'.$k.'페이지'.PHP_EOL; + $str .= '열린'.$k.'페이지'.PHP_EOL; } } From 4119572c26cd6f8e88883077e502e0fa018f06b8 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 21 May 2013 14:41:10 +0900 Subject: [PATCH 2/3] =?UTF-8?q?time=20zone=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 2 +- extend/.htaccess | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.php b/config.php index 6a0ae943a..4532f3cd6 100644 --- a/config.php +++ b/config.php @@ -7,7 +7,7 @@ // 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음 define('_GNUBOARD_', true); -if (PHP_VERSION >= '5.3.0') { +if (PHP_VERSION >= '5.1.0') { //if (function_exists("date_default_timezone_set")) date_default_timezone_set("Asia/Seoul"); date_default_timezone_set("Asia/Seoul"); } diff --git a/extend/.htaccess b/extend/.htaccess index 792d60054..ca17088a0 100644 --- a/extend/.htaccess +++ b/extend/.htaccess @@ -1 +1 @@ -# +# .htaccess \ No newline at end of file From 18b5212c8606dc7016a631990d75f2774dcea962 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 21 May 2013 15:21:13 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EC=95=84=EC=9D=B4?= =?UTF-8?q?=EC=BD=98=EB=A7=8C=20=EC=82=AC=EC=9A=A9=ED=95=B4=EB=8F=84=20?= =?UTF-8?q?=EC=82=AC=EC=9D=B4=EB=93=9C=EB=B7=B0=EA=B0=80=20=ED=99=9C?= =?UTF-8?q?=EC=84=B1=ED=99=94=20=EB=90=98=EA=B2=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.lib.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/common.lib.php b/lib/common.lib.php index 0ead30b53..84bf7196d 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -982,7 +982,8 @@ function get_sideview($mb_id, $name='', $email='', $homepage='') $tmp_name = ""; if ($mb_id) { - $tmp_name = "$name"; + //$tmp_name = "$name"; + $tmp_name = ''; if ($config['cf_use_member_icon']) { $mb_dir = substr($mb_id,0,2); @@ -992,12 +993,15 @@ function get_sideview($mb_id, $name='', $email='', $homepage='') $width = $config['cf_member_icon_width']; $height = $config['cf_member_icon_height']; $icon_file_url = G4_DATA_URL.'/member/'.$mb_dir.'/'.$mb_id.'.gif'; - $tmp_name = ''; + $tmp_name .= ''; if ($config['cf_use_member_icon'] == 2) // 회원아이콘+이름 - $tmp_name = $tmp_name . " $name"; + $tmp_name = $tmp_name.' '.$name; } + } else { + $tmp_name = $tmp_name.' '.$name; } + $tmp_name .= ''; $title_mb_id = '['.$mb_id.']'; } else {