./modules/seo/seo.controller.php : 57

 

Creating default object from empty value
/host/home2/socialskyo/html/modules/seo/seo.controller.php : 57
 
55
        $is_index = ($current_module_info->module_srl == $site_module_info->module_srl) ? true : false;  
56
57
        $args->url = $current_module_info->mid;  
58
        $args->site_srl = $site_module_info->site_srl;  
59

        $args->is_shortcut = 'N';  

 

 

혹시 심각한 에러일까요? 까막눈이라...

  • profile
    심각한 건 아니구요..
    php 버전 호환경고 쯤이에요.. 그냥 두셔도 잘 작동하니까 걱정하지마세요.
  • profile ?
    • skyo
    • 질문기여자
    고맙습니다.!!
  • profile
    XE에 저 경고 엄청 많이 나와요. $args를 미리 선언하지 않아서 그런데, 딱히 큰 문제가 있는 건 아니고
    웬만하면 경고는 꺼두고 치명적인 에러만 기록하시는 게 정신건강에 좋습니다 ㅋㅋ
  • ?
    수정하고 싶으시면, $arg 를 처음 사용하기 전에
    $arg = new stdClass(); 같은 식으로 선언 해주시면 되긴 해요.