From c6421a2325913a0f128a403135024ba2168956a6 Mon Sep 17 00:00:00 2001 From: S Page Date: Mon, 7 Oct 2013 21:13:19 -0700 Subject: [PATCH] Fix help string to avoid PHP notice Escape a $ symbol in help message and rephrase slightly. Without this, `php maintenance/language/checkDupeMessages.php --help` prints PHP Notice: Undefined variable: dupeMessages in language/checkDupeMessages.php on line 56 Change-Id: Ie7c0f07e68cee1f7cd2758f71b09d34e339d4b7b --- maintenance/language/checkDupeMessages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/language/checkDupeMessages.php b/maintenance/language/checkDupeMessages.php index ac9d8cb430..381ddae18f 100644 --- a/maintenance/language/checkDupeMessages.php +++ b/maintenance/language/checkDupeMessages.php @@ -52,7 +52,7 @@ Options: * mode: Output format, can be either: * text: Text output on the console (default) * wiki: Wiki format, with * at beginning of each line - * php: Output text as PHP syntax in a array $dupeMessages + * php: Output text as PHP syntax in an array named \$dupeMessages * raw: Raw output for duplicates TEXT; } -- 2.20.1