r48836 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r48835‎ | r48836 | r48837 >
Date:17:30, 25 March 2009
Author:philip
Status:ok (Comments)
Tags:
Comment:
Follow up on r48015, fix a bug which caused 'A' and 'D' won't work.
Modified paths:
  • /trunk/phase3/languages/LanguageConverter.php (modified) (history)

Diff [purge]

Index: trunk/phase3/languages/LanguageConverter.php
@@ -981,7 +981,7 @@
982982 if ( in_array($variant, $flags) )
983983 $flags_temp[] = $variant;
984984 }
985 - if ( count($flags_temp) == 0 )
 985+ if ( count($flags_temp) !== 0 )
986986 $flags = $flags_temp;
987987 }
988988 if ( count($flags) == 0 )

Follow-up revisions

RevisionCommit summaryAuthorDate
r50099* Backported r48836: fix total breakage of the language converter.tstarling06:47, 1 May 2009

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r48015New function to convert content text to specified language (only applies on w...philip06:56, 4 March 2009

Comments

#Comment by Brion VIBBER (talk | contribs)   18:36, 26 March 2009

Applied fix live.

Status & tagging log