Index: db_tag_processor.php =================================================================== --- db_tag_processor.php (revision 15013) +++ db_tag_processor.php (working copy) @@ -551,7 +551,12 @@ if ( $this->Special && $this->Application->hasObject($this->Prefix) ) { // object, produced by "kDBList::linkToParent" method, that otherwise would keep it's id - $this->Application->removeObject($this->Prefix); + $item =& $this->Application->recallObject($this->Prefix); + /* @var $item kDBBase */ + + if ( $item instanceof kDBItem ) { + $this->Application->removeObject($this->Prefix); + } } $list->GoNext();