r53219 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r53218‎ | r53219 | r53220 >
Date:12:03, 14 July 2009
Author:werdna
Status:deferred
Tags:
Comment:
Fix fatal JS error on pages which aren't strictly talk pages (like 'new messages')
Modified paths:
  • /trunk/extensions/LiquidThreads/lqt.js (modified) (history)

Diff [purge]

Index: trunk/extensions/LiquidThreads/lqt.js
@@ -224,7 +224,9 @@
225225 // Update the new thread link
226226 var newThreadLink = getElementsByClassName( document, 'a', 'lqt_start_discussion' )[0];
227227
228 - addHandler( newThreadLink, 'click', liquidThreads.handleNewLink );
 228+ if (newThreadLink) {
 229+ addHandler( newThreadLink, 'click', liquidThreads.handleNewLink );
 230+ }
229231
230232 // Show quote buttons
231233 liquidThreads.showQuoteButtons();

Status & tagging log