-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP8.0에서 in_array 오류 #8
Comments
TypeError #0 "in_array(): Argument #2 ($haystack) must be of type array, bool given" in modules/board/skins/sketchbook5/_viewer.html on line 23 TypeError #0 "in_array(): Argument #2 ($haystack) must be of type array, bool given" in modules/board/skins/sketchbook5/_read.html on line 70 뷰어로 보기에서도 같은 오류 찾았어요 |
제보 감사합니다. |
갤러리에서는 모든 워닝과 fatal 에러를 고쳤습니다. 다른 항목들도 차차 고쳐나가도록 하겠습니다. |
게시판 스킨 설정의 '목록형 설정' 카테고리에서 '모바일형 사용(기본)'으로 선택되어 있을 경우 PC환경에서는 괜찮은데 모바일 환경에서 접속하면 오류 발생하네요
TypeError #0 "in_array(): Argument #2 ($haystack) must be of type array, bool given" in modules/board/skins/sketchbook5/_list_m.html on line 67
TypeError #0 "in_array(): Argument #2 ($haystack) must be of type array, bool given" in modules/board/skins/sketchbook5/_list_m.html on line 78
@in_array('list_m',$mi->cmt_count) 를 in_array('list_m',$mi->cmt_count ?: []) 로 수정
@in_array('list_m',$mi->ext_img) 를 in_array('list_m',$mi->ext_img) ?: []) 로 수정
코어 history 보면서 따라해 본 거라 이래도 되나 싶긴 한데.. 수정한 뒤에는 정상적으로 작동되는 것 같아요
The text was updated successfully, but these errors were encountered: