From 4119572c26cd6f8e88883077e502e0fa018f06b8 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 21 May 2013 14:41:10 +0900 Subject: [PATCH 1/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 2/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 { From 24833875684fe6dada09d25ba69f51406b25172c Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 21 May 2013 15:33:20 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EB=A1=9C?= =?UTF-8?q?=EA=B3=A0=20=ED=81=AC=EA=B8=B0=20=EA=B3=A0=EC=A0=95=20=ED=95=B4?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- head.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/head.php b/head.php index fd58d3785..7cce56f21 100644 --- a/head.php +++ b/head.php @@ -31,7 +31,7 @@ if ($config['cf_include_head']) {