From 18b5212c8606dc7016a631990d75f2774dcea962 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 21 May 2013 15:21:13 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EC=95=84=EC=9D=B4=EC=BD=98?= =?UTF-8?q?=EB=A7=8C=20=EC=82=AC=EC=9A=A9=ED=95=B4=EB=8F=84=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=EB=93=9C=EB=B7=B0=EA=B0=80=20=ED=99=9C=EC=84=B1?= =?UTF-8?q?=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 {