issue 77 Remove PHP 5.3.x deprecated features

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8599 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2011-07-14 08:18:04 +00:00
parent 3fe79a4d1c
commit 61e00415d6
16 changed files with 42 additions and 40 deletions

View file

@ -13,7 +13,7 @@ class trashModel extends trash
$args->trashSrl = $trashSrl;
$output = executeQuery('trash.getTrash', $args, $columnList);
$this->_setTrashObject(&$oTrashVO, $output->data);
$this->_setTrashObject($oTrashVO, $output->data);
$output->data = $oTrashVO;
return $output;
@ -31,7 +31,7 @@ class trashModel extends trash
foreach($output->data AS $key=>$value)
{
$oTrashVO = new TrashVO();
$this->_setTrashObject(&$oTrashVO, $value);
$this->_setTrashObject($oTrashVO, $value);
$output->data[$key] = $oTrashVO;
}
}