We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bc7c51 commit bf3d8feCopy full SHA for bf3d8fe
framework/console/controllers/AssetController.php
@@ -735,7 +735,7 @@ private function findRealPath($path)
735
if ($pathPart === '..') {
736
array_pop($realPathParts);
737
} else {
738
- array_push($realPathParts, $pathPart);
+ $realPathParts[] = $pathPart;
739
}
740
741
return implode(DIRECTORY_SEPARATOR, $realPathParts);
0 commit comments