Skip to content

Commit

Permalink
Регистронезависимое раскоментирование переменных fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kikimor committed Jul 18, 2018
1 parent 3f073e8 commit 8d84ce4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ private function getParam($name)

// Формируем имя параметра на выход точно такое же, какое и забиндено в парметры.
foreach ($this->params as $key => $value) {
$key = ltrim($key, ':');
if (mb_strtolower($key) == $name) {
$outName = $key;
break;
Expand Down

0 comments on commit 8d84ce4

Please sign in to comment.