r17101 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r17100‎ | r17101 | r17102 >
Date:02:11, 19 October 2006
Author:nickj
Status:old
Tags:
Comment:
Quick update to r17088 - Fuzz testing was giving me a PHP Notice: "Undefined variable: wgUseDatabaseMessages in <b>/var/www/hosts/mediawiki/wiki/languages/messages/MessagesPl.php</b> on line <b>1292</b><br />". This happens because the desired output is the literal string "$wgUseDatabaseMessages", not the value of the $wgUseDatabaseMessages variable. However variables are not expanded in single quotes, but they are in double quotes; so when the line was changed from single to double quotes, it started wanting to print out the variable - therefore modifying to use single quotes, and adding escaping for the literal singles quotes.
Modified paths:
  • /trunk/phase3/languages/messages/MessagesPl.php (modified) (history)

Diff [purge]

Index: trunk/phase3/languages/messages/MessagesPl.php
@@ -1289,7 +1289,7 @@
12901290 'allmessagescurrent' => 'Tekst obecny',
12911291 'allmessagestext' => 'Oto lista wszystkich komunikatów dostępnych w przestrzeni nazw MediaWiki:',
12921292 'allmessagesnotsupportedUI' => 'Wybrany przez Ciebie język interfejsu <b>$1</b> nie jest wspierany przez stronę Special:Allmessages.',
1293 -'allmessagesnotsupportedDB' => "Strona '''Special:Allmessages''' nie może być użyta, ponieważ '''$wgUseDatabaseMessages''' jest wyłączone.",
 1293+'allmessagesnotsupportedDB' => 'Strona \'\'\'Special:Allmessages\'\'\' nie może być użyta, ponieważ \'\'\'$wgUseDatabaseMessages\'\'\' jest wyłączone.',
12941294 'allmessagesfilter' => 'Filtr nazw komunikatów:',
12951295 'allmessagesmodified' => 'Pokaż tylko zmodyfikowane',
12961296

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r17088(bug 7619) Update for Polish language (pl) #6rotem14:03, 18 October 2006