From d2a42f570faaeefec58cb9b3177c8bc80c2217ea Mon Sep 17 00:00:00 2001 From: YJSoft Date: Thu, 9 Jun 2022 14:08:19 +0900 Subject: [PATCH] Fix #1958 Do not install point module trigger by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 초기 설치시 포인트 모듈의 트리거를 등록하면 포인트 모듈이 정상 동작하나 실제 설정은 OFF인 이상한 상태가 됩니다. 따라서 실제 설정과 동작을 일치시키기 위해 트리거 등록 코드를 삭제합니다. 포인트 모듈 활성화시 같은 함수를 실행하므로 동작상 오류는 없습니다. --- modules/point/point.class.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/point/point.class.php b/modules/point/point.class.php index ab467b818..4a922eb05 100644 --- a/modules/point/point.class.php +++ b/modules/point/point.class.php @@ -159,9 +159,6 @@ class point extends ModuleObject // Create a directory to store points information. FileHandler::makeDir('./files/member_extra_info/point'); - - // Register triggers. - $this->registerTriggers(); } /**