맴버시리얼넘버가 없을경우 플래그삭제를 실행하지 않음

This commit is contained in:
BJRambo 2016-09-10 19:36:41 +09:00
parent 13b69cbf38
commit 20cbdc6ef3

View file

@ -1105,6 +1105,11 @@ class ncenterliteController extends ncenterlite
public static function removeFlagFile($member_srl = null)
{
if($member_srl === null)
{
return;
}
$flag_path = \RX_BASEDIR . 'files/cache/ncenterlite/new_notify/' . getNumberingPath($member_srl) . $member_srl . '.php';
if(file_exists($flag_path))
{