# HG changeset patch # User Matti Hamalainen # Date 1397330623 -10800 # Node ID 90e8d193cc90d224d522c188ba855a692c2e4d80 # Parent 8a8bd1d4a51c4e030e740504f4356677df857744 Do not lowercase result strings from text input prompts. diff -r 8a8bd1d4a51c -r 90e8d193cc90 tools/makegmaps.php --- a/tools/makegmaps.php Sat Apr 12 09:07:34 2014 +0300 +++ b/tools/makegmaps.php Sat Apr 12 22:23:43 2014 +0300 @@ -158,7 +158,7 @@ while (!$valid) { echo $msg."\n".($default !== FALSE ? "[".$default."]" : "")."> "; - $sprompt = strtolower(trim(fgets(STDIN))); + $sprompt = trim(fgets(STDIN)); if ($sprompt == "") $sprompt = ($default !== FALSE ? $default : "");