Index: trunk/extensions/Push/specials/ext.push.special.js |
— | — | @@ -117,7 +117,8 @@ |
118 | 118 | 'action': 'query', |
119 | 119 | 'prop': 'images', |
120 | 120 | 'format': 'json', |
121 | | - 'titles': pageName |
| 121 | + 'titles': pageName, |
| 122 | + 'imlimit': 500 |
122 | 123 | }, |
123 | 124 | function( data ) { |
124 | 125 | if ( data.query ) { |
Index: trunk/extensions/Push/Push.php |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | die( 'Not an entry point.' ); |
26 | 26 | } |
27 | 27 | |
28 | | -define( 'Push_VERSION', '1.1' ); |
| 28 | +define( 'Push_VERSION', '1.1.1' ); |
29 | 29 | |
30 | 30 | $wgExtensionCredits['other'][] = array( |
31 | 31 | 'path' => __FILE__, |
Index: trunk/extensions/Push/RELEASE-NOTES |
— | — | @@ -4,6 +4,11 @@ |
5 | 5 | Latest version of the release notes: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Push/RELEASE-NOTES?view=co |
6 | 6 | |
7 | 7 | |
| 8 | +=== Version 1.1.1 === |
| 9 | +2011-08-29 |
| 10 | + |
| 11 | +* Changed file push limit from 10 to 500. |
| 12 | + |
8 | 13 | === Version 1.1 === |
9 | 14 | 2011-08-04 |
10 | 15 | |
Index: trunk/extensions/Push/includes/Push_Tab.php |
— | — | @@ -414,6 +414,7 @@ |
415 | 415 | 'format' => 'json', |
416 | 416 | 'prop' => 'images', |
417 | 417 | 'titles' => implode( '|', $pages ), |
| 418 | + 'imlimit' => 500 |
418 | 419 | ); |
419 | 420 | |
420 | 421 | $api = new ApiMain( new FauxRequest( $requestData, true ), true ); |