맴버모듈의 프로필이미지설정값을 지정하지 않아도 90으로 고정

This commit is contained in:
BJRambo 2014-08-23 18:45:07 +09:00
parent 0c9182c685
commit cb108133e5
3 changed files with 5 additions and 5 deletions

View file

@ -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';