Index: trunk/extensions/LiquidThreads/compat/HTMLForm.php |
— | — | @@ -539,8 +539,6 @@ |
540 | 540 | return wfMsgExt( 'htmlform-int-invalid', 'parse' ); |
541 | 541 | } |
542 | 542 | |
543 | | - $in_range = true; |
544 | | - |
545 | 543 | if ( isset( $this->mParams['min'] ) ) { |
546 | 544 | $min = $this->mParams['min']; |
547 | 545 | if ( $min > $value ) |
Index: trunk/extensions/LiquidThreads/classes/Thread.php |
— | — | @@ -255,7 +255,7 @@ |
256 | 256 | $fname = __METHOD__ . "/" . $fname; |
257 | 257 | } |
258 | 258 | |
259 | | - $res = $dbr->update( 'thread', |
| 259 | + $dbr->update( 'thread', |
260 | 260 | /* SET */ $this->getRow(), |
261 | 261 | /* WHERE */ array( 'thread_id' => $this->id, ), |
262 | 262 | $fname ); |
Index: trunk/extensions/LiquidThreads/pages/TalkpageView.php |
— | — | @@ -48,8 +48,6 @@ |
49 | 49 | |
50 | 50 | $article = new Article( $this->title ); |
51 | 51 | |
52 | | - $oldid = $this->request->getVal( 'oldid', null ); |
53 | | - |
54 | 52 | wfLoadExtensionMessages( 'LiquidThreads' ); |
55 | 53 | // If $article_text == "", the talkpage was probably just created |
56 | 54 | // when the first thread was posted to make the links blue. |