Fix unnecessary assignment by reference, which causes E_NOTICE

This commit is contained in:
Kijin Sung 2024-01-04 01:16:40 +09:00
parent ed15587c4f
commit 6c113c22ed
35 changed files with 80 additions and 84 deletions

View file

@ -93,7 +93,7 @@ class PollAdminController extends Poll
$args->poll_index_srl = $poll_index_srl;
$oDB = &DB::getInstance();
$oDB = DB::getInstance();
$oDB->begin();
$output = executeQueryArray('poll.getPollByDeletePollTitle', $args);
@ -145,7 +145,7 @@ class PollAdminController extends Poll
$args = new stdClass;
$args->poll_srl = $poll_srl;
$oDB = &DB::getInstance();
$oDB = DB::getInstance();
$oDB->begin();
$output = $oDB->executeQuery('poll.deletePoll', $args);