NOISSUE remove reference operator.

This commit is contained in:
bnu 2013-12-30 17:35:02 +09:00
parent 35384999c9
commit 194ce8614a
118 changed files with 859 additions and 859 deletions

View file

@ -15,7 +15,7 @@ class integration_search extends ModuleObject
function moduleInstall()
{
// Registered in action forward
$oModuleController = &getController('module');
$oModuleController = getController('module');
$oModuleController->insertActionForward('integration_search', 'view', 'IS');
return new Object();
@ -28,7 +28,7 @@ class integration_search extends ModuleObject
*/
function checkUpdate()
{
$oModuleModel = &getModel('module');
$oModuleModel = getModel('module');
$config = $oModuleModel->getModuleConfig('integration_search');
if($config->skin)
@ -50,7 +50,7 @@ class integration_search extends ModuleObject
*/
function moduleUpdate()
{
$oModuleModel = &getModel('module');
$oModuleModel = getModel('module');
$config = $oModuleModel->getModuleConfig('message');
if($config->skin)
@ -62,7 +62,7 @@ class integration_search extends ModuleObject
if(is_dir($template_path))
{
$config->skin = implode('|@|', $config_parse);
$oModuleController = &getController('module');
$oModuleController = getController('module');
$oModuleController->updateModuleConfig('integration_search', $config);
}
}