mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
NOISSUE remove reference operator.
This commit is contained in:
parent
35384999c9
commit
194ce8614a
118 changed files with 859 additions and 859 deletions
|
|
@ -761,7 +761,7 @@ class Context
|
|||
*/
|
||||
public function getSiteTitle()
|
||||
{
|
||||
$oModuleModel = &getModel('module');
|
||||
$oModuleModel = getModel('module');
|
||||
$moduleConfig = $oModuleModel->getModuleConfig('module');
|
||||
|
||||
if(isset($moduleConfig->siteTitle))
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class DisplayHandler extends Handler
|
|||
|
||||
// execute add-on
|
||||
$called_position = 'before_display_content';
|
||||
$oAddonController = &getController('addon');
|
||||
$oAddonController = getController('addon');
|
||||
$addon_file = $oAddonController->getCacheFilePath(Mobile::isFromMobilePhone() ? "mobile" : "pc");
|
||||
if(file_exists($addon_file)) include($addon_file);
|
||||
|
||||
|
|
|
|||
|
|
@ -451,7 +451,7 @@ class ExtraItem
|
|||
break;
|
||||
// address
|
||||
case "kr_zip" :
|
||||
if(($oKrzipModel = &getModel('krzip')) && method_exists($oKrzipModel , 'getKrzipCodeSearchHtml' ))
|
||||
if(($oKrzipModel = getModel('krzip')) && method_exists($oKrzipModel , 'getKrzipCodeSearchHtml' ))
|
||||
{
|
||||
$buff[] = $oKrzipModel->getKrzipCodeSearchHtml($column_name, $value);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ class ModuleHandler extends Handler
|
|||
|
||||
if(!$this->document_srl && $this->mid && $this->entry)
|
||||
{
|
||||
$oDocumentModel = &getModel('document');
|
||||
$oDocumentModel = getModel('document');
|
||||
$this->document_srl = $oDocumentModel->getDocumentSrlByAlias($this->mid, $this->entry);
|
||||
if($this->document_srl)
|
||||
{
|
||||
|
|
@ -238,7 +238,7 @@ class ModuleHandler extends Handler
|
|||
// use the site default layout.
|
||||
if($module_info->{$targetSrl} == -1)
|
||||
{
|
||||
$oLayoutAdminModel = &getAdminModel('layout');
|
||||
$oLayoutAdminModel = getAdminModel('layout');
|
||||
$layoutSrl = $oLayoutAdminModel->getSiteDefaultLayout($viewType, $module_info->site_srl);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue