mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-20 02:42:23 +09:00
PHP 5.4 이상에서의 호환성 문제 개선.
This commit is contained in:
parent
2bf31f566a
commit
7daa63cedf
9 changed files with 22 additions and 17 deletions
|
|
@ -572,7 +572,7 @@ class module extends ModuleObject
|
|||
{
|
||||
if($data->count == 1) continue;
|
||||
$domain = $data->domain;
|
||||
$args = null;
|
||||
$args = new stdClass;
|
||||
$args->domain = $domain;
|
||||
$output2 = executeQueryArray("module.getSiteByDomain", $args);
|
||||
$bFirst = true;
|
||||
|
|
@ -584,7 +584,7 @@ class module extends ModuleObject
|
|||
continue;
|
||||
}
|
||||
$domain .= "_";
|
||||
$args = null;
|
||||
$args = new stdClass;
|
||||
$args->domain = $domain;
|
||||
$args->site_srl = $site->site_srl;
|
||||
$output3 = executeQuery("module.updateSite", $args);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue