iBet uBet web content aggregator. Adding the entire web to your favor.
iBet uBet web content aggregator. Adding the entire web to your favor.



Link to original content: https://www.mediawiki.org/wiki/Special:Code/MediaWiki/31922
r31922 MediaWiki - Code Review archive

r31922 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r31921‎ | r31922 | r31923 >
Date:14:08, 13 March 2008
Author:aaron
Status:old
Tags:
Comment:
Allow leading whitespace in redirect matches (bug 13344)
Modified paths:
  • /trunk/phase3/includes/Title.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Title.php
@@ -285,7 +285,7 @@
286286 */
287287 public static function newFromRedirect( $text ) {
288288 $redir = MagicWord::get( 'redirect' );
289 - if( $redir->matchStart( $text ) ) {
 289+ if( $redir->matchStart( trim($text) ) ) {
290290 // Extract the first link and see if it's usable
291291 $m = array();
292292 if( preg_match( '!\[{2}(.*?)(?:\||\]{2})!', $text, $m ) ) {

Status & tagging log