public function getinfo() {\r
$object = $this->get_object();\r
if (isset($object->name)) {\r
- $object = $this->get_file_info(&$object);\r
+ $object = $this->get_file_info($object);\r
return array(\r
'Path' => $object->path,\r
'Filename' => $object->name,\r
foreach ( $objects as $object ) {\r
if(!isset($this->params['type']) || (isset($this->params['type']) && strtolower($this->params['type'])=='images' && in_array(strtolower($object->content_type),$this->config['images']))) {\r
if($this->config['upload']['imagesonly']== false || ($this->config['upload']['imagesonly']== true && in_array(strtolower($object->content_type),$this->config['images']))) {\r
- $object = $this->get_file_info(&$object);\r
+ $object = $this->get_file_info($object);\r
$array[$object->url] = array(\r
'Path'=> $object->path,\r
'Filename' => $object->name,\r