/**
  * (non-PHPdoc)
  * @see includes/EnhancedChangesList#endRecentChangesList()
  */
 public function endRecentChangesList()
 {
     global $wgRequest;
     $collabWatchlist = $wgRequest->getIntOrNull('collabwatchlist');
     $result = '';
     $result .= parent::endRecentChangesList();
     $glWlIdAndName = $this->getCollabWatchlistIdAndName($this->user->getId());
     $result .= $this->collabWatchlistAndTagSelectors($glWlIdAndName, $collabWatchlist, null, 'collabwatchlist', wfMsg('collabwatchlist')) . ' ';
     $result .= Xml::label(wfMsg('collabwatchlisttagcomment'), 'tagcomment') . ' ' . Xml::input('tagcomment') . ' ';
     if ($this->user->useRCPatrol()) {
         $result .= Xml::checkLabel(wfMsg('collabwatchlistpatrol'), 'setpatrolled', 'setpatrolled', true) . ' ';
     }
     $result .= Xml::submitButton(wfMsg('collabwatchlistsettagbutton'));
     $result .= Xml::closeElement('form');
     return $result;
 }
 function endRecentChangesList()
 {
     return parent::endRecentChangesList() . '</div>';
 }