Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:
$s = $this->Context->ObjectFactory->NewContextObject($this->Context, 'sqlBuilder');
$s->SetMainTable('Discussion','d');
$s->AddSelect('DiscussionID', 'd');
$s->AddOrderBy('DiscussionID', 'd', 'desc');
$s->AddLimit(0, 1);
I have a few discussions where a comment should be moved from one discussion to the other--rather than merge, just take the one comment--is this possible with your extension?