Index: trunk/extensions/LiquidThreads/pages/ThreadPermalinkView.php |
— | — | @@ -138,6 +138,13 @@ |
139 | 139 | return false; |
140 | 140 | } |
141 | 141 | |
| 142 | + // Handle action=edit stuff |
| 143 | + if ( $this->request->getVal( 'action' ) == 'edit' ) { |
| 144 | + // Rewrite to lqt_method = edit |
| 145 | + $this->request->setVal( 'lqt_method', 'edit' ); |
| 146 | + $this->request->setVal( 'lqt_operand', $this->thread->id() ); |
| 147 | + } |
| 148 | + |
142 | 149 | // Expose feed links. |
143 | 150 | global $wgFeedClasses, $wgScriptPath, $wgServer; |
144 | 151 | $thread = $this->thread->topmostThread()->title()->getPrefixedText(); |