Skip to content

Commit 206b70a

Browse files
committed
AC-8862: Config path which contains capital letters doesn't return value
1 parent 712e80c commit 206b70a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/App/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function clean()
125125
*/
126126
public function get($configType, $path = '', $default = null)
127127
{
128-
$path = strtolower($path);
128+
//$path = strtolower($path);
129129
$result = null;
130130
if (isset($this->types[$configType])) {
131131
$result = $this->types[$configType]->get($path);

0 commit comments

Comments
 (0)