[이윰] PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index: alarm 해결하기

페이지 정보

shadow2fox 2,064 2018.07.01 06:42

평점

본문

PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index: alarm 해결하기
그누보드5/eyoom/core/member/push_info.php를 열어 // 푸쉬알람 등록을 검색하여 아래와 같이 수정한다.

수정 전

    // 푸쉬알람 등록
    if(!$push[$item]['alarm']) {
        $push[$item]['alarm'] = true;

        include_once "../../classes/qfile.class.php";
        $qfile    = new qfile;
        $qfile->save_file("push",$push_file,$push);
    }
    echo $output;
수정 후

    // 푸쉬알람 등록
    if(isset($push['alarm'])) {        // 추가 시작 - PHP Notice:  Undefined index: alarm 해결책
        if(!$push[$item]['alarm']) {
            $push[$item]['alarm'] = true;

            include_once "../../classes/qfile.class.php";
            $qfile    = new qfile;
            $qfile->save_file("push",$push_file,$push);
        }
    }        // 추가 끝
    echo $output;
추천인
  • 추천해 주세요
10
shadow2fox - 회원등급 : 자연/Level 142 - 포인트 : 2,539,737
레벨 142
경험치 3,032,959

Progress Bar 70%

- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은 자기 자신에게 기회를 주는 것이다. - 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.

댓글

첫 번째 댓글을 남겨 주세요