From: Alexandre Emsenhuber Date: Thu, 4 Sep 2008 21:20:16 +0000 (+0000) Subject: (bug 15482) Special:Recentchangeslinked has no longer two submit buttons X-Git-Tag: 1.31.0-rc.0~45479 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27votes%27%2C%20votes=%27waiting%27%29%20%7D%7D?a=commitdiff_plain;h=9cf2b8cdf09b16109157e46843a30df76f31b975;p=lhc%2Fweb%2Fwiklou.git (bug 15482) Special:Recentchangeslinked has no longer two submit buttons --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index a9f250fc5c..aa1a158b80 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -176,6 +176,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Respect file restrictions in the file history list * (bug 15399) Odd/even classes on sortable tables' rows could be slow for large tables, and have been disabled by default. +* (bug 15482) Special:Recentchangeslinked has no longer two submit buttons === API changes in 1.14 === diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index 1d042b1754..2adc010795 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -159,7 +159,6 @@ class SpecialRecentchangeslinked extends SpecialRecentchanges { Xml::input( 'target', 40, str_replace('_',' ',$opts['target']) ) . Xml::check( 'showlinkedto', $opts['showlinkedto'], array('id' => 'showlinkedto') ) . ' ' . Xml::label( wfMsg("recentchangeslinked-to"), 'showlinkedto' ) ); - $extraOpts['submit'] = Xml::submitbutton( wfMsg('allpagessubmit') ); return $extraOpts; }