디버깅 로그를 살펴봤는데

메뉴 출력기 위젯 관련 다음 문구가 뜨더군요...

뭐가 문제인걸까요

 

PHP Errors and Warnings
  =======================
  01. Warning: Creating default object from empty value
  - widgets/xe_navigator/xe_navigator.class.php line 55
  - modules/widget/widget.controller.php line 391
  - modules/widget/widget.controller.php line 472
  - modules/widget/widget.controller.php line 289
  - line 0
  - modules/widget/widget.controller.php line 267
  - modules/widget/widget.controller.php line 250
  - classes/module/ModuleHandler.class.php line 1280
  - classes/display/DisplayHandler.class.php line 63
  - classes/module/ModuleHandler.class.php line 1107
  - index.php line 53
  • Lv24
    XE나 라이믹스에서는 무시해도되지만 해당 오류는 PHP에서 $args->블라블라 형식으로 만들어지는 오브젝트들에 기본적으로 이 오브젝트를 어떻게 사용되는 것인지를 선언해야합니다.
    해당 부분이 선언되어있지 않아 문제가 되는 것입니다.
    해당 오류가 있는 항목 위에 해당 변수에 stdClass 를 선언해보세요.
  • Lv24 ?
    감사합니다!