Index: branches/5.2.x/core/units/images/image_tag_processor.php =================================================================== diff -u -N -r15137 -r15152 --- branches/5.2.x/core/units/images/image_tag_processor.php (.../image_tag_processor.php) (revision 15137) +++ branches/5.2.x/core/units/images/image_tag_processor.php (.../image_tag_processor.php) (revision 15152) @@ -1,6 +1,6 @@ getObject($params); + $object = $this->getObject($params); if ($object->GetDBField('SameImages') == null || $object->GetDBField('SameImages') == 1) { return false; } @@ -215,7 +215,7 @@ function ImageSrc($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $this->makeRelativePaths($object); @@ -291,7 +291,7 @@ function _getImageUrl($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $base_url = rtrim($this->Application->BaseURL(), '/'); @@ -441,7 +441,7 @@ return ''; } - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $params['img_path'] = $image_url; @@ -467,7 +467,7 @@ */ function ImageUrl($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); if ($object->GetDBField('SameImages') ? $object->GetDBField('LocalThumb') : $object->GetDBField('LocalImage') ) { $ret = $this->Application->Phrase(getArrayValue($params,'local_phrase')); }