5 * Split off from Article.php and Skin.php, 2003-12-22
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
27 * This class handles printing the history page for an article. In order to
28 * be efficient, it uses timestamps rather than offsets for paging, to avoid
29 * costly LIMIT,offset queries.
31 * Construct it by passing in an Article, and call $h->history() to print the
36 class HistoryAction
extends FormlessAction
{
40 /** @var array Array of message keys and strings */
43 public function getName() {
47 public function requiresWrite() {
51 public function requiresUnblock() {
55 protected function getPageTitle() {
56 return $this->msg( 'history-title', $this->getTitle()->getPrefixedText() )->text();
59 protected function getDescription() {
60 // Creation of a subtitle link pointing to [[Special:Log]]
61 return Linker
::linkKnown(
62 SpecialPage
::getTitleFor( 'Log' ),
63 $this->msg( 'viewpagelogs' )->escaped(),
65 array( 'page' => $this->getTitle()->getPrefixedText() )
70 * @return WikiPage|Article|ImagePage|CategoryPage|Page The Article object we are working on.
72 public function getArticle() {
77 * As we use the same small set of messages in various methods and that
78 * they are called often, we call them once and save them in $this->message
80 private function preCacheMessages() {
81 // Precache various messages
82 if ( !isset( $this->message
) ) {
83 $msgs = array( 'cur', 'last', 'pipe-separator' );
84 foreach ( $msgs as $msg ) {
85 $this->message
[$msg] = $this->msg( $msg )->escaped();
91 * Print the history page for an article.
94 $out = $this->getOutput();
95 $request = $this->getRequest();
98 * Allow client caching.
100 if ( $out->checkLastModified( $this->page
->getTouched() ) ) {
101 return; // Client cache fresh and headers sent, nothing more to do.
104 $this->preCacheMessages();
105 $config = $this->context
->getConfig();
107 # Fill in the file cache if not set already
108 $useFileCache = $config->get( 'UseFileCache' );
109 if ( $useFileCache && HTMLFileCache
::useFileCache( $this->getContext() ) ) {
110 $cache = new HTMLFileCache( $this->getTitle(), 'history' );
111 if ( !$cache->isCacheGood( /* Assume up to date */ ) ) {
112 ob_start( array( &$cache, 'saveToFileCache' ) );
116 // Setup page variables.
117 $out->setFeedAppendQuery( 'action=history' );
118 $out->addModules( 'mediawiki.action.history' );
119 if ( $config->get( 'UseMediaWikiUIEverywhere' ) ) {
120 $out = $this->getOutput();
121 $out->addModuleStyles( array(
122 'mediawiki.ui.input',
123 'mediawiki.ui.checkbox',
127 // Handle atom/RSS feeds.
128 $feedType = $request->getVal( 'feed' );
130 $this->feed( $feedType );
135 // Fail nicely if article doesn't exist.
136 if ( !$this->page
->exists() ) {
137 $out->addWikiMsg( 'nohistory' );
138 # show deletion/move log if there is an entry
139 LogEventsList
::showLogExtract(
141 array( 'delete', 'move' ),
145 'conds' => array( "log_action != 'revision'" ),
146 'showIfEmpty' => false,
147 'msgKey' => array( 'moveddeleted-notice' )
155 * Add date selector to quickly get to a certain time
157 $year = $request->getInt( 'year' );
158 $month = $request->getInt( 'month' );
159 $tagFilter = $request->getVal( 'tagfilter' );
160 $tagSelector = ChangeTags
::buildTagFilterSelector( $tagFilter );
163 * Option to show only revisions that have been (partially) hidden via RevisionDelete
165 if ( $request->getBool( 'deleted' ) ) {
166 $conds = array( 'rev_deleted != 0' );
170 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
171 $checkDeleted = Xml
::checkLabel( $this->msg( 'history-show-deleted' )->text(),
172 'deleted', 'mw-show-deleted-only', $request->getBool( 'deleted' ) ) . "\n";
177 // Add the general form
178 $action = htmlspecialchars( wfScript() );
180 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
182 $this->msg( 'history-fieldset-title' )->text(),
184 array( 'id' => 'mw-history-search' )
186 Html
::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n" .
187 Html
::hidden( 'action', 'history' ) . "\n" .
189 ( $year == null ? MWTimestamp
::getLocalInstance()->format( 'Y' ) : $year ),
192 ( $tagSelector ?
( implode( ' ', $tagSelector ) . ' ' ) : '' ) .
195 $this->msg( 'allpagessubmit' )->text(),
197 array( 'mw-ui-progressive' )
202 Hooks
::run( 'PageHistoryBeforeList', array( &$this->page
, $this->getContext() ) );
204 // Create and output the list.
205 $pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
207 $pager->getNavigationBar() .
209 $pager->getNavigationBar()
211 $out->preventClickjacking( $pager->getPreventClickjacking() );
216 * Fetch an array of revisions, specified by a given limit, offset and
217 * direction. This is now only used by the feeds. It was previously
218 * used by the main UI but that's now handled by the pager.
220 * @param int $limit The limit number of revisions to get
222 * @param int $direction Either self::DIR_PREV or self::DIR_NEXT
223 * @return ResultWrapper
225 function fetchRevisions( $limit, $offset, $direction ) {
226 // Fail if article doesn't exist.
227 if ( !$this->getTitle()->exists() ) {
228 return new FakeResultWrapper( array() );
231 $dbr = wfGetDB( DB_SLAVE
);
233 if ( $direction === self
::DIR_PREV
) {
234 list( $dirs, $oper ) = array( "ASC", ">=" );
235 } else { /* $direction === self::DIR_NEXT */
236 list( $dirs, $oper ) = array( "DESC", "<=" );
240 $offsets = array( "rev_timestamp $oper " . $dbr->addQuotes( $dbr->timestamp( $offset ) ) );
245 $page_id = $this->page
->getId();
247 return $dbr->select( 'revision',
248 Revision
::selectFields(),
249 array_merge( array( 'rev_page' => $page_id ), $offsets ),
251 array( 'ORDER BY' => "rev_timestamp $dirs",
252 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit )
257 * Output a subscription feed listing recent edits to this page.
259 * @param string $type Feed type
261 function feed( $type ) {
262 if ( !FeedUtils
::checkFeedOutput( $type ) ) {
265 $request = $this->getRequest();
267 $feedClasses = $this->context
->getConfig()->get( 'FeedClasses' );
268 /** @var RSSFeed|AtomFeed $feed */
269 $feed = new $feedClasses[$type](
270 $this->getTitle()->getPrefixedText() . ' - ' .
271 $this->msg( 'history-feed-title' )->inContentLanguage()->text(),
272 $this->msg( 'history-feed-description' )->inContentLanguage()->text(),
273 $this->getTitle()->getFullURL( 'action=history' )
276 // Get a limit on number of feed entries. Provide a sane default
277 // of 10 if none is defined (but limit to $wgFeedLimit max)
278 $limit = $request->getInt( 'limit', 10 );
281 $this->context
->getConfig()->get( 'FeedLimit' )
284 $items = $this->fetchRevisions( $limit, 0, self
::DIR_NEXT
);
286 // Generate feed elements enclosed between header and footer.
288 if ( $items->numRows() ) {
289 foreach ( $items as $row ) {
290 $feed->outItem( $this->feedItem( $row ) );
293 $feed->outItem( $this->feedEmpty() );
298 function feedEmpty() {
300 $this->msg( 'nohistory' )->inContentLanguage()->text(),
301 $this->msg( 'history-feed-empty' )->inContentLanguage()->parseAsBlock(),
302 $this->getTitle()->getFullURL(),
303 wfTimestamp( TS_MW
),
305 $this->getTitle()->getTalkPage()->getFullURL()
310 * Generate a FeedItem object from a given revision table row
311 * Borrows Recent Changes' feed generation functions for formatting;
312 * includes a diff to the previous revision (if any).
314 * @param stdClass|array $row Database row
317 function feedItem( $row ) {
318 $rev = new Revision( $row );
319 $rev->setTitle( $this->getTitle() );
320 $text = FeedUtils
::formatDiffRow(
322 $this->getTitle()->getPreviousRevisionID( $rev->getId() ),
324 $rev->getTimestamp(),
327 if ( $rev->getComment() == '' ) {
329 $title = $this->msg( 'history-feed-item-nocomment',
331 $wgContLang->timeanddate( $rev->getTimestamp() ),
332 $wgContLang->date( $rev->getTimestamp() ),
333 $wgContLang->time( $rev->getTimestamp() ) )->inContentLanguage()->text();
335 $title = $rev->getUserText() .
336 $this->msg( 'colon-separator' )->inContentLanguage()->text() .
337 FeedItem
::stripComment( $rev->getComment() );
343 $this->getTitle()->getFullURL( 'diff=' . $rev->getId() . '&oldid=prev' ),
344 $rev->getTimestamp(),
346 $this->getTitle()->getTalkPage()->getFullURL()
355 class HistoryPager
extends ReverseChronologicalPager
{
359 public $lastRow = false;
361 public $counter, $historyPage, $buttons, $conds;
363 protected $oldIdChecked;
365 protected $preventClickjacking = false;
369 protected $parentLens;
372 * @param HistoryAction $historyPage
373 * @param string $year
374 * @param string $month
375 * @param string $tagFilter
376 * @param array $conds
378 function __construct( $historyPage, $year = '', $month = '', $tagFilter = '', $conds = array() ) {
379 parent
::__construct( $historyPage->getContext() );
380 $this->historyPage
= $historyPage;
381 $this->tagFilter
= $tagFilter;
382 $this->getDateCond( $year, $month );
383 $this->conds
= $conds;
386 // For hook compatibility...
387 function getArticle() {
388 return $this->historyPage
->getArticle();
391 function getSqlComment() {
392 if ( $this->conds
) {
393 return 'history page filtered'; // potentially slow, see CR r58153
395 return 'history page unfiltered';
399 function getQueryInfo() {
401 'tables' => array( 'revision', 'user' ),
402 'fields' => array_merge( Revision
::selectFields(), Revision
::selectUserFields() ),
403 'conds' => array_merge(
404 array( 'rev_page' => $this->getWikiPage()->getId() ),
406 'options' => array( 'USE INDEX' => array( 'revision' => 'page_timestamp' ) ),
407 'join_conds' => array( 'user' => Revision
::userJoinCond() ),
409 ChangeTags
::modifyDisplayQuery(
410 $queryInfo['tables'],
411 $queryInfo['fields'],
413 $queryInfo['join_conds'],
414 $queryInfo['options'],
417 Hooks
::run( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
422 function getIndexField() {
423 return 'rev_timestamp';
427 * @param stdClass $row
430 function formatRow( $row ) {
431 if ( $this->lastRow
) {
432 $latest = ( $this->counter
== 1 && $this->mIsFirst
);
433 $firstInList = $this->counter
== 1;
435 $s = $this->historyLine( $this->lastRow
, $row,
436 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
440 $this->lastRow
= $row;
445 function doBatchLookups() {
446 # Do a link batch query
447 $this->mResult
->seek( 0 );
448 $batch = new LinkBatch();
450 foreach ( $this->mResult
as $row ) {
451 if ( $row->rev_parent_id
) {
452 $revIds[] = $row->rev_parent_id
;
454 if ( !is_null( $row->user_name
) ) {
455 $batch->add( NS_USER
, $row->user_name
);
456 $batch->add( NS_USER_TALK
, $row->user_name
);
457 } else { # for anons or usernames of imported revisions
458 $batch->add( NS_USER
, $row->rev_user_text
);
459 $batch->add( NS_USER_TALK
, $row->rev_user_text
);
462 $this->parentLens
= Revision
::getParentLengths( $this->mDb
, $revIds );
464 $this->mResult
->seek( 0 );
468 * Creates begin of history list with a submit button
470 * @return string HTML output
472 function getStartBody() {
473 $this->lastRow
= false;
475 $this->oldIdChecked
= 0;
477 $this->getOutput()->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
478 $s = Html
::openElement( 'form', array( 'action' => wfScript(),
479 'id' => 'mw-history-compare' ) ) . "\n";
480 $s .= Html
::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n";
481 $s .= Html
::hidden( 'action', 'historysubmit' ) . "\n";
483 // Button container stored in $this->buttons for re-use in getEndBody()
484 $this->buttons
= '<div>';
485 $className = 'historysubmit mw-history-compareselectedversions-button';
486 $attrs = array( 'class' => $className )
487 + Linker
::tooltipAndAccesskeyAttribs( 'compareselectedversions' );
488 $this->buttons
.= $this->submitButton( $this->msg( 'compareselectedversions' )->text(),
492 if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
493 $this->buttons
.= $this->getRevisionButton( 'revisiondelete', 'showhideselectedversions' );
495 $this->buttons
.= '</div>';
497 $s .= $this->buttons
;
498 $s .= '<ul id="pagehistory">' . "\n";
503 private function getRevisionButton( $name, $msg ) {
504 $this->preventClickjacking();
505 # Note bug #20966, <button> is non-standard in IE<8
506 $element = Html
::element(
512 'class' => "historysubmit mw-history-$name-button",
514 $this->msg( $msg )->text()
519 function getEndBody() {
520 if ( $this->lastRow
) {
521 $latest = $this->counter
== 1 && $this->mIsFirst
;
522 $firstInList = $this->counter
== 1;
523 if ( $this->mIsBackwards
) {
524 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
525 if ( $this->mOffset
== '' ) {
531 # The next row is the past-the-end row
532 $next = $this->mPastTheEndRow
;
535 $s = $this->historyLine( $this->lastRow
, $next,
536 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
541 # Add second buttons only if there is more than one rev
542 if ( $this->getNumRows() > 2 ) {
543 $s .= $this->buttons
;
551 * Creates a submit button
553 * @param string $message Text of the submit button, will be escaped
554 * @param array $attributes Attributes
555 * @return string HTML output for the submit button
557 function submitButton( $message, $attributes = array() ) {
558 # Disable submit button if history has 1 revision only
559 if ( $this->getNumRows() > 1 ) {
560 return Html
::submitButton( $message, $attributes );
567 * Returns a row from the history printout.
569 * @todo document some more, and maybe clean up the code (some params redundant?)
571 * @param stdClass $row The database row corresponding to the previous line.
572 * @param mixed $next The database row corresponding to the next line
573 * (chronologically previous)
574 * @param bool|string $notificationtimestamp
575 * @param bool $latest Whether this row corresponds to the page's latest revision.
576 * @param bool $firstInList Whether this row corresponds to the first
577 * displayed on this history page.
578 * @return string HTML output for the row
580 function historyLine( $row, $next, $notificationtimestamp = false,
581 $latest = false, $firstInList = false ) {
582 $rev = new Revision( $row );
583 $rev->setTitle( $this->getTitle() );
585 if ( is_object( $next ) ) {
586 $prevRev = new Revision( $next );
587 $prevRev->setTitle( $this->getTitle() );
592 $curlink = $this->curLink( $rev, $latest );
593 $lastlink = $this->lastLink( $rev, $next );
594 $curLastlinks = $curlink . $this->historyPage
->message
['pipe-separator'] . $lastlink;
595 $histLinks = Html
::rawElement(
597 array( 'class' => 'mw-history-histlinks' ),
598 $this->msg( 'parentheses' )->rawParams( $curLastlinks )->escaped()
601 $diffButtons = $this->diffButtons( $rev, $firstInList );
602 $s = $histLinks . $diffButtons;
604 $link = $this->revLink( $rev );
608 $user = $this->getUser();
609 // Show checkboxes for each revision
610 if ( $user->isAllowed( 'deleterevision' ) ) {
611 $this->preventClickjacking();
612 // If revision was hidden from sysops, disable the checkbox
613 if ( !$rev->userCan( Revision
::DELETED_RESTRICTED
, $user ) ) {
614 $del = Xml
::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
615 // Otherwise, enable the checkbox...
617 $del = Xml
::check( 'showhiderevisions', false,
618 array( 'name' => 'ids[' . $rev->getId() . ']' ) );
620 // User can only view deleted revisions...
621 } elseif ( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) {
622 // If revision was hidden from sysops, disable the link
623 if ( !$rev->userCan( Revision
::DELETED_RESTRICTED
, $user ) ) {
624 $del = Linker
::revDeleteLinkDisabled( false );
625 // Otherwise, show the link...
627 $query = array( 'type' => 'revision',
628 'target' => $this->getTitle()->getPrefixedDBkey(), 'ids' => $rev->getId() );
629 $del .= Linker
::revDeleteLink( $query,
630 $rev->isDeleted( Revision
::DELETED_RESTRICTED
), false );
637 $lang = $this->getLanguage();
638 $dirmark = $lang->getDirMark();
642 $s .= " <span class='history-user'>" .
643 Linker
::revUserTools( $rev, true ) . "</span>";
646 if ( $rev->isMinor() ) {
647 $s .= ' ' . ChangesList
::flag( 'minor' );
650 # Sometimes rev_len isn't populated
651 if ( $rev->getSize() !== null ) {
652 # Size is always public data
653 $prevSize = isset( $this->parentLens
[$row->rev_parent_id
] )
654 ?
$this->parentLens
[$row->rev_parent_id
]
656 $sDiff = ChangesList
::showCharacterDifference( $prevSize, $rev->getSize() );
657 $fSize = Linker
::formatRevisionSize( $rev->getSize() );
658 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . "$fSize $sDiff";
661 # Text following the character difference is added just before running hooks
662 $s2 = Linker
::revComment( $rev, false, true );
664 if ( $notificationtimestamp && ( $row->rev_timestamp
>= $notificationtimestamp ) ) {
665 $s2 .= ' <span class="updatedmarker">' . $this->msg( 'updatedmarker' )->escaped() . '</span>';
666 $classes[] = 'mw-history-line-updated';
671 # Rollback and undo links
672 if ( $prevRev && $this->getTitle()->quickUserCan( 'edit', $user ) ) {
673 if ( $latest && $this->getTitle()->quickUserCan( 'rollback', $user ) ) {
674 // Get a rollback link without the brackets
675 $rollbackLink = Linker
::generateRollback(
678 array( 'verify', 'noBrackets' )
680 if ( $rollbackLink ) {
681 $this->preventClickjacking();
682 $tools[] = $rollbackLink;
686 if ( !$rev->isDeleted( Revision
::DELETED_TEXT
)
687 && !$prevRev->isDeleted( Revision
::DELETED_TEXT
)
689 # Create undo tooltip for the first (=latest) line only
690 $undoTooltip = $latest
691 ?
array( 'title' => $this->msg( 'tooltip-undo' )->text() )
693 $undolink = Linker
::linkKnown(
695 $this->msg( 'editundo' )->escaped(),
699 'undoafter' => $prevRev->getId(),
700 'undo' => $rev->getId()
703 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
706 // Allow extension to add their own links here
707 Hooks
::run( 'HistoryRevisionTools', array( $rev, &$tools ) );
710 $s2 .= ' ' . $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped();
714 list( $tagSummary, $newClasses ) = ChangeTags
::formatSummaryRow( $row->ts_tags
, 'history' );
715 $classes = array_merge( $classes, $newClasses );
716 if ( $tagSummary !== '' ) {
717 $s2 .= " $tagSummary";
720 # Include separator between character difference and following text
722 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . $s2;
725 Hooks
::run( 'PageHistoryLineEnding', array( $this, &$row, &$s, &$classes ) );
729 $attribs['class'] = implode( ' ', $classes );
732 return Xml
::tags( 'li', $attribs, $s ) . "\n";
736 * Create a link to view this revision of the page
738 * @param Revision $rev
741 function revLink( $rev ) {
742 $date = $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $this->getUser() );
743 $date = htmlspecialchars( $date );
744 if ( $rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
745 $link = Linker
::linkKnown(
748 array( 'class' => 'mw-changeslist-date' ),
749 array( 'oldid' => $rev->getId() )
754 if ( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
755 $link = "<span class=\"history-deleted\">$link</span>";
762 * Create a diff-to-current link for this revision for this page
764 * @param Revision $rev
765 * @param bool $latest This is the latest revision of the page?
768 function curLink( $rev, $latest ) {
769 $cur = $this->historyPage
->message
['cur'];
770 if ( $latest ||
!$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
773 return Linker
::linkKnown(
778 'diff' => $this->getWikiPage()->getLatest(),
779 'oldid' => $rev->getId()
786 * Create a diff-to-previous link for this revision for this page.
788 * @param Revision $prevRev The revision being displayed
789 * @param stdClass|string|null $next The next revision in list (that is
790 * the previous one in chronological order).
791 * May either be a row, "unknown" or null.
794 function lastLink( $prevRev, $next ) {
795 $last = $this->historyPage
->message
['last'];
797 if ( $next === null ) {
798 # Probably no next row
802 if ( $next === 'unknown' ) {
803 # Next row probably exists but is unknown, use an oldid=prev link
804 return Linker
::linkKnown(
809 'diff' => $prevRev->getId(),
815 $nextRev = new Revision( $next );
817 if ( !$prevRev->userCan( Revision
::DELETED_TEXT
, $this->getUser() )
818 ||
!$nextRev->userCan( Revision
::DELETED_TEXT
, $this->getUser() )
823 return Linker
::linkKnown(
828 'diff' => $prevRev->getId(),
829 'oldid' => $next->rev_id
835 * Create radio buttons for page history
837 * @param Revision $rev
838 * @param bool $firstInList Is this version the first one?
840 * @return string HTML output for the radio buttons
842 function diffButtons( $rev, $firstInList ) {
843 if ( $this->getNumRows() > 1 ) {
845 $radio = array( 'type' => 'radio', 'value' => $id );
846 /** @todo Move title texts to javascript */
847 if ( $firstInList ) {
848 $first = Xml
::element( 'input',
849 array_merge( $radio, array(
850 'style' => 'visibility:hidden',
852 'id' => 'mw-oldid-null' ) )
854 $checkmark = array( 'checked' => 'checked' );
856 # Check visibility of old revisions
857 if ( !$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
858 $radio['disabled'] = 'disabled';
859 $checkmark = array(); // We will check the next possible one
860 } elseif ( !$this->oldIdChecked
) {
861 $checkmark = array( 'checked' => 'checked' );
862 $this->oldIdChecked
= $id;
864 $checkmark = array();
866 $first = Xml
::element( 'input',
867 array_merge( $radio, $checkmark, array(
869 'id' => "mw-oldid-$id" ) ) );
870 $checkmark = array();
872 $second = Xml
::element( 'input',
873 array_merge( $radio, $checkmark, array(
875 'id' => "mw-diff-$id" ) ) );
877 return $first . $second;
884 * This is called if a write operation is possible from the generated HTML
885 * @param bool $enable
887 function preventClickjacking( $enable = true ) {
888 $this->preventClickjacking
= $enable;
892 * Get the "prevent clickjacking" flag
895 function getPreventClickjacking() {
896 return $this->preventClickjacking
;