Index: trunk/phase3/includes/LogEventsList.php |
— | — | @@ -395,7 +395,6 @@ |
396 | 396 | } else { |
397 | 397 | $out->addWikiMsg( 'logempty' ); |
398 | 398 | } |
399 | | - return $pager->getNumRows(); |
400 | 399 | } |
401 | 400 | |
402 | 401 | /** |
Index: trunk/phase3/includes/specials/SpecialBlockip.php |
— | — | @@ -419,11 +419,7 @@ |
420 | 420 | |
421 | 421 | function showLogFragment( $out, $title ) { |
422 | 422 | $out->addHtml( Xml::element( 'h2', NULL, LogPage::logName( 'block' ) ) ); |
423 | | - $count = LogEventsList::showLogExtract( $out, 'block', $title->getPrefixedText(), '', 10 ); |
424 | | - if($count > 10){ |
425 | | - $logtitle = Title::newFromText('Special:Log/block'); |
426 | | - $out->addHtml( Xml::element( 'a', array('href' => $logtitle->getFullURL(array('type' => 'block', 'page' => $title->getPrefixedText()))), wfMsg('blocklog-header') ) ); |
427 | | - } |
| 423 | + LogEventsList::showLogExtract( $out, 'block', $title->getPrefixedText() ); |
428 | 424 | } |
429 | 425 | |
430 | 426 | /** |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2515,7 +2515,6 @@ |
2516 | 2516 | 'autoblocker' => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]". |
2517 | 2517 | The reason given for $1\'s block is: "$2"', |
2518 | 2518 | 'blocklogpage' => 'Block log', |
2519 | | -'blocklog-header' => 'Full block log', |
2520 | 2519 | 'blocklogentry' => 'blocked [[$1]] with an expiry time of $2 $3', |
2521 | 2520 | 'blocklogtext' => 'This is a log of user blocking and unblocking actions. |
2522 | 2521 | Automatically blocked IP addresses are not listed. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -206,7 +206,6 @@ |
207 | 207 | even if there are broken link records with source article id 0 in the database |
208 | 208 | * (bug 15598) Special:Newpages default limit uses user preference for recentchanges |
209 | 209 | limit instead of hardcoded 50. |
210 | | -* (bug 14638) Special:Blockip now provides a link to the block log if the user has been blocked more than 10 times. Patch by Matt Johnston. |
211 | 210 | |
212 | 211 | === API changes in 1.14 === |
213 | 212 | |