Index: branches/5.2.x/core/units/languages/languages_tag_processor.php =================================================================== diff -u -N -r15137 -r15152 --- branches/5.2.x/core/units/languages/languages_tag_processor.php (.../languages_tag_processor.php) (revision 15137) +++ branches/5.2.x/core/units/languages/languages_tag_processor.php (.../languages_tag_processor.php) (revision 15152) @@ -1,6 +1,6 @@ Application->GetTopmostPrefix($this->Prefix); if( substr($this->Application->GetVar($top_prefix.'_mode'), 0, 1) == 't' && !$edit_direct ) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ return $object->GetDBField('Charset'); @@ -74,13 +74,13 @@ function LanguageName($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); return $this->Application->Phrase($params['phrase_prefix'].$object->GetDBField('PackName')); } function LanguageLink($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); $params['m_lang'] = $object->GetID(); @@ -89,7 +89,7 @@ function SelectedLanguage($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBList */ if (array_key_exists('type', $params) && $params['type'] == 'data') {