mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 15:22:15 +09:00
PHP 5.4 이상에서의 호환성 문제 개선.
This commit is contained in:
parent
2bf31f566a
commit
7daa63cedf
9 changed files with 22 additions and 17 deletions
|
|
@ -176,7 +176,7 @@ class moduleAdminController extends module
|
|||
$errorLog = array();
|
||||
foreach($clones as $mid => $browser_title)
|
||||
{
|
||||
$clone_args = null;
|
||||
$clone_args = new stdClass;
|
||||
$clone_args = clone $module_info;
|
||||
$clone_args->module_srl = null;
|
||||
$clone_args->content = null;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class moduleModel extends module
|
|||
function getSiteInfoByDomain($domain, $columnList = array())
|
||||
{
|
||||
$args = new stdClass();
|
||||
$args->domain= $domain;
|
||||
$args->domain = $domain;
|
||||
$output = executeQuery('module.getSiteInfoByDomain', $args, $columnList);
|
||||
return $output->data;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue