Index: trunk/extensions/LiquidThreads/pages/NewUserMessagesView.php |
— | — | @@ -111,6 +111,11 @@ |
112 | 112 | if ( ! is_array( $this->threads ) ) { |
113 | 113 | throw new MWException( 'You must use NewUserMessagesView::setThreads() before calling NewUserMessagesView::show().' ); |
114 | 114 | } |
| 115 | + |
| 116 | + if ( $this->request->getBool( 'lqt_inline' ) ) { |
| 117 | + $this->doInlineEditForm(); |
| 118 | + return false; |
| 119 | + } |
115 | 120 | |
116 | 121 | // Do everything by id, because we can't depend on reference identity; a simple Thread::withId |
117 | 122 | // can change the cached value and screw up your references. |