mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-17 01:12:14 +09:00
#85, time()을 $_SERVER['REQUEST_TIME']으로 대체
This commit is contained in:
parent
3bc8d7da67
commit
540da2c75c
28 changed files with 48 additions and 48 deletions
|
|
@ -1252,7 +1252,7 @@ class moduleController extends module
|
|||
$this->unlockTimeoutPassed();
|
||||
$args->lock_name = $lock_name;
|
||||
if(!$timeout) $timeout = 60;
|
||||
$args->deadline = date("YmdHis", time() + $timeout);
|
||||
$args->deadline = date("YmdHis", $_SERVER['REQUEST_TIME'] + $timeout);
|
||||
if($member_srl) $args->member_srl = $member_srl;
|
||||
$output = executeQuery('module.insertLock', $args);
|
||||
if($output->toBool())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue