Index: branches/5.2.x/units/topics/topics_tag_processor.php =================================================================== diff -u -N -r14252 -r15155 --- branches/5.2.x/units/topics/topics_tag_processor.php (.../topics_tag_processor.php) (revision 14252) +++ branches/5.2.x/units/topics/topics_tag_processor.php (.../topics_tag_processor.php) (revision 15155) @@ -1,6 +1,6 @@ getObject($params); + $object = $this->getObject($params); // -1 - don't count post created together with topic return $object->GetDBField('Posts') ? $object->GetDBField('Posts') - 1 : 0; @@ -64,7 +64,7 @@ */ function IsLocked($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); return $object->GetDBField('TopicType') == 0; }