Index: branches/unlabeled/unlabeled-1.68.4/core/kernel/db/db_tag_processor.php =================================================================== diff -u -r7429 -r7431 --- branches/unlabeled/unlabeled-1.68.4/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 7429) +++ branches/unlabeled/unlabeled-1.68.4/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 7431) @@ -1801,6 +1801,21 @@ return $object->IsNewItem(); } + /** + * Creates link to an item including only it's id + * + * @param Array $params + * @return string + */ + function ItemLink($params) + { + $object =& $this->getObject($params); + + $params['pass'] = 'm'; + $params[$object->getPrefixSpecial().'_id'] = $object->GetID(); + + return $this->Application->ProcessParsedTag('m', 't', $params); + } } ?> \ No newline at end of file