mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
NOISSUE remove reference operator.
This commit is contained in:
parent
35384999c9
commit
194ce8614a
118 changed files with 859 additions and 859 deletions
|
|
@ -68,7 +68,7 @@ class fileAdminController extends file
|
|||
$file_count = count($file_srl_list);
|
||||
if(!$file_count) return $this->stop('msg_file_cart_is_null');
|
||||
|
||||
$oFileController = &getController('file');
|
||||
$oFileController = getController('file');
|
||||
// Delete the post
|
||||
for($i=0;$i<$file_count;$i++)
|
||||
{
|
||||
|
|
@ -99,7 +99,7 @@ class fileAdminController extends file
|
|||
$config->allow_outlink_format = Context::get('allow_outlink_format');
|
||||
$config->allow_outlink_site = Context::get('allow_outlink_site');
|
||||
// Create module Controller object
|
||||
$oModuleController = &getController('module');
|
||||
$oModuleController = getController('module');
|
||||
$output = $oModuleController->insertModuleConfig('file',$config);
|
||||
|
||||
$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispFileAdminConfig');
|
||||
|
|
@ -141,7 +141,7 @@ class fileAdminController extends file
|
|||
if($userFileAllowSize > $iniMinSzie || $userAttachAllowSize > $iniMinSzie)
|
||||
return new Object(-1, 'input size over than config in php.ini');
|
||||
|
||||
$oModuleController = &getController('module');
|
||||
$oModuleController = getController('module');
|
||||
for($i=0;$i<count($module_srl);$i++)
|
||||
{
|
||||
$srl = trim($module_srl[$i]);
|
||||
|
|
@ -166,7 +166,7 @@ class fileAdminController extends file
|
|||
$file_srl = (int)Context::get('file_srl');
|
||||
//$fileSrlList = array(500, 502);
|
||||
|
||||
$oFileModel = &getModel('file');
|
||||
$oFileModel = getModel('file');
|
||||
$output = $oFileModel->getFile($file_srl);
|
||||
//$output = $oFileModel->getFile($fileSrlList);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue