diff options
author | Sam Reed <reedy@users.mediawiki.org> | 2010-12-06 22:29:41 +0000 |
---|---|---|
committer | Sam Reed <reedy@users.mediawiki.org> | 2010-12-06 22:29:41 +0000 |
commit | 1519cfebb540dffae9d8039120a7abd4a5f87e86 (patch) | |
tree | 54ff7a07dfbbd9ca3c31e77b7dc7133572669742 /skins/common/protect.js | |
parent | db461a71653d358298fe38b37e6575fc6c2808bd (diff) | |
download | mediawikicore-1519cfebb540dffae9d8039120a7abd4a5f87e86.tar.gz mediawikicore-1519cfebb540dffae9d8039120a7abd4a5f87e86.zip |
(bug 26265) Many semicolons are missing from JavaScript files
Unterminated statements..
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/77922
Diffstat (limited to 'skins/common/protect.js')
-rw-r--r-- | skins/common/protect.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/common/protect.js b/skins/common/protect.js index 58df6aac3468..a284c3f8afeb 100644 --- a/skins/common/protect.js +++ b/skins/common/protect.js @@ -20,7 +20,7 @@ window.ProtectionForm = { if( !box ) return false; - var boxbody = box.getElementsByTagName('tbody')[0] + var boxbody = box.getElementsByTagName('tbody')[0]; var row = document.createElement( 'tr' ); boxbody.insertBefore( row, boxbody.firstChild.nextSibling ); @@ -348,4 +348,4 @@ window.ProtectionForm = { } }); } -} +}; |