Index: branches/5.2.x/units/products/products_tag_processor.php =================================================================== diff -u -N -r15156 -r15540 --- branches/5.2.x/units/products/products_tag_processor.php (.../products_tag_processor.php) (revision 15156) +++ branches/5.2.x/units/products/products_tag_processor.php (.../products_tag_processor.php) (revision 15540) @@ -1,6 +1,6 @@ Application->recallObject('rel'); +// $related = $this->Application->recallObject('rel'); + return $this->PrintList2($params); } @@ -536,13 +537,17 @@ function IsSubscription($params) { - $object = &$this->Application->recallObject($this->getPrefixSpecial()); + $object = $this->getObject($params); + /* @var $object kDBItem */ + return ($object->GetDBField('Type') == 2); } function IsTangible($params) { - $object = &$this->Application->recallObject($this->getPrefixSpecial()); + $object = $this->getObject($params); + /* @var $object kDBItem */ + return ($object->GetDBField('Type') == 1); }