mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
Call-time pass-by-reference is a deprecated method
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4449 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
afb0aad503
commit
75590ff609
1 changed files with 3 additions and 3 deletions
|
|
@ -205,14 +205,14 @@
|
|||
|
||||
$oModuleModel = &getModel('module');
|
||||
$module_info = $oModuleModel->getModuleInfoByDocumentSrl($document_srl);
|
||||
if($this->SendNotifyRequest($parentHomepage, &$module_info, &$oDocument, &$oParent, $parentHomepage, &$oChild, $childHomepage) != 200)
|
||||
if($this->SendNotifyRequest($parentHomepage, $module_info, $oDocument, $oParent, $parentHomepage, $oChild, $childHomepage) != 200)
|
||||
{
|
||||
$indexedPage = rtrim($parentHomepage, '/').'/index.php';
|
||||
$this->SendNotifyRequest($indexedPage, &$module_info, &$oDocument, &$oParent, $parentHomepage, &$oChild, $childHomepage);
|
||||
$this->SendNotifyRequest($indexedPage, $module_info, $oDocument, $oParent, $parentHomepage, $oChild, $childHomepage);
|
||||
}
|
||||
}
|
||||
|
||||
function SendNotifyRequest($target, $module_info, $oDocument, $oParent, $parentHomepage, $oChild, $childHomepage)
|
||||
function SendNotifyRequest($target, &$module_info, &$oDocument, &$oParent, $parentHomepage, &$oChild, $childHomepage)
|
||||
{
|
||||
$oReq = new HTTP_Request();
|
||||
$oReq->setURL($target);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue