php7.2호환을 위해 변경한 클래스 Object 를 BaseObject으로 변경

This commit is contained in:
BJRambo 2017-11-28 20:01:28 +09:00
parent f4c19a3e0f
commit f3f40f6859
109 changed files with 976 additions and 976 deletions

View file

@ -105,7 +105,7 @@ class fileAdminController extends file
{
if ($config->allowed_filesize > 2047 || $config->allowed_attach_size > 2047)
{
return new Object(-1, 'msg_32bit_max_2047mb');
return new BaseObject(-1, 'msg_32bit_max_2047mb');
}
}
@ -154,7 +154,7 @@ class fileAdminController extends file
{
if ($file_config->allowed_filesize > 2047 || $file_config->allowed_attach_size > 2047)
{
return new Object(-1, 'msg_32bit_max_2047mb');
return new BaseObject(-1, 'msg_32bit_max_2047mb');
}
}