row->ts_tags; } /** * @return string A HTML
  • element representing this revision, showing * change tags and everything */ public function getHTML() { $difflink = $this->list->msg( 'parentheses' ) ->rawParams( $this->getDiffLink() )->escaped(); $revlink = $this->getRevisionLink(); $userlink = Linker::revUserLink( $this->revision ); $comment = Linker::revComment( $this->revision ); if ( $this->isDeleted() ) { $revlink = "$revlink"; } $content = "$difflink $revlink $userlink $comment"; $attribs = array(); $tags = $this->getTags(); if ( $tags ) { list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow( $tags, 'edittags' ); $content .= " $tagSummary"; $attribs['class'] = implode( ' ', $classes ); } return Xml::tags( 'li', $attribs, $content ); } }