r111187 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r111186‎ | r111187 | r111188 >
Date:19:30, 10 February 2012
Author:werdna
Status:ok (Comments)
Tags:
Comment:
(bug 24831) Fix issue where LQT pages would break with oldids on the query string. Patch by Nikola Kovacs.
Modified paths:
  • /trunk/extensions/LiquidThreads/classes/Dispatch.php (modified) (history)

Diff [purge]

Index: trunk/extensions/LiquidThreads/classes/Dispatch.php
@@ -35,7 +35,8 @@
3636 $viewname = 'TalkpageView';
3737 } elseif ( !$lqt_action && (
3838 ( !in_array( $action, $lqt_actions ) && $action) ||
39 - $request->getVal( 'diff', null ) !== null ) ) {
 39+ $request->getVal( 'diff', null ) !== null ||
 40+ $request->getVal( 'oldid', null ) !== null ) ) {
4041 // Pass through wrapper
4142 $viewname = 'TalkpageHeaderView';
4243 } elseif ( $action == 'protect' || $action == 'unprotect' ) {

Sign-offs

UserFlagDate
Nikerabbitinspected20:29, 10 February 2012

Comments

#Comment by Nikerabbit (talk | contribs)   20:29, 10 February 2012

Finally!

Status & tagging log