From cb108133e56a0d1f6fa24401002ac0aaa164ce2a Mon Sep 17 00:00:00 2001 From: BJRambo Date: Sat, 23 Aug 2014 18:45:07 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A7=B4=EB=B2=84=EB=AA=A8=EB=93=88=EC=9D=98?= =?UTF-8?q?=20=ED=94=84=EB=A1=9C=ED=95=84=EC=9D=B4=EB=AF=B8=EC=A7=80?= =?UTF-8?q?=EC=84=A4=EC=A0=95=EA=B0=92=EC=9D=84=20=EC=A7=80=EC=A0=95?= =?UTF-8?q?=ED=95=98=EC=A7=80=20=EC=95=8A=EC=95=84=EB=8F=84=2090=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EA=B3=A0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/member/member.class.php | 4 ++-- modules/member/member.controller.php | 2 +- modules/member/member.model.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/member/member.class.php b/modules/member/member.class.php index 2c092458e..1cfc045a5 100644 --- a/modules/member/member.class.php +++ b/modules/member/member.class.php @@ -66,8 +66,8 @@ class member extends ModuleObject { if(!$config->image_name_max_height) $config->image_name_max_height = '20'; if(!$config->image_mark_max_width) $config->image_mark_max_width = '20'; if(!$config->image_mark_max_height) $config->image_mark_max_height = '20'; - if(!$config->profile_image_max_width) $config->profile_image_max_width = '80'; - if(!$config->profile_image_max_height) $config->profile_image_max_height = '80'; + if(!$config->profile_image_max_width) $config->profile_image_max_width = '90'; + if(!$config->profile_image_max_height) $config->profile_image_max_height = '90'; if($config->group_image_mark!='Y') $config->group_image_mark = 'N'; if(!$config->password_strength) $config->password_strength = 'normal'; diff --git a/modules/member/member.controller.php b/modules/member/member.controller.php index 9675bd903..1ae8c0875 100644 --- a/modules/member/member.controller.php +++ b/modules/member/member.controller.php @@ -711,7 +711,7 @@ class memberController extends member $max_width = $config->profile_image_max_width; if(!$max_width) $max_width = "90"; $max_height = $config->profile_image_max_height; - if(!$max_height) $max_height = "20"; + if(!$max_height) $max_height = "90"; // Get a target path to save $target_path = sprintf('files/member_extra_info/profile_image/%s', getNumberingPath($member_srl)); FileHandler::makeDir($target_path); diff --git a/modules/member/member.model.php b/modules/member/member.model.php index ff543158c..f0f7f70d8 100644 --- a/modules/member/member.model.php +++ b/modules/member/member.model.php @@ -57,8 +57,8 @@ class memberModel extends member if(!$config->image_name_max_height) $config->image_name_max_height = 20; if(!$config->image_mark_max_width) $config->image_mark_max_width = 20; if(!$config->image_mark_max_height) $config->image_mark_max_height = 20; - if(!$config->profile_image_max_width) $config->profile_image_max_width = 80; - if(!$config->profile_image_max_height) $config->profile_image_max_height = 80; + if(!$config->profile_image_max_width) $config->profile_image_max_width = 90; + if(!$config->profile_image_max_height) $config->profile_image_max_height = 90; if(!$config->skin) $config->skin = 'default'; if(!$config->colorset) $config->colorset = 'white'; if(!$config->editor_skin || $config->editor_skin == 'default') $config->editor_skin = 'xpresseditor';