NOISSUE PHP 버전 호환성 개선

This commit is contained in:
khongchi 2013-12-17 20:51:00 +09:00
parent dc41e3c4a3
commit efa5ec4c0c
6 changed files with 9 additions and 6 deletions

View file

@ -815,7 +815,7 @@ class memberModel extends member
if(file_exists($image_name_file))
{
list($width, $height, $type, $attrs) = getimagesize($image_name_file);
$info = null;
$info = new stdClass();
$info->width = $width;
$info->height = $height;
$info->src = Context::getRequestUri().$image_name_file;