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

@ -36,8 +36,8 @@ class ttimport
// Pre-create the objects needed
$this->oXmlParser = new XmlParser();
// Get category information of the target module
$oDocumentController = &getController('document');
$oDocumentModel = &getModel('document');
$oDocumentController = getController('document');
$oDocumentModel = getModel('document');
$category_list = $category_titles = array();
$category_list = $oDocumentModel->getCategoryList($module_srl);
if(count($category_list)) foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl;
@ -76,7 +76,7 @@ class ttimport
$category_list = $oDocumentModel->getCategoryList($module_srl);
if(count($category_list)) foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl;
// Get administrator information
$oMemberModel = &getModel('member');
$oMemberModel = getModel('member');
$member_info = $oMemberModel->getMemberInfoByUserID($user_id);
$author_xml_id = 0;