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 a5f4347 commit 25f8a21Copy full SHA for 25f8a21
libraries/Router.php
@@ -177,8 +177,9 @@ public function route(Pair &$redirect = null) {
177
$pathArray = $this->getRequestPathArray();
178
$path = (isset($pathArray[1]) ? $pathArray[1] : null);
179
$subpath = (isset($pathArray[2]) ? $pathArray[2] : null);
180
+ $fullpath = $path . (!empty($subpath) ? "/" . $subpath : "");
181
Logger::setTransactionName(
- $path . (isset($subpath) ? "/" . $subpath : "")
182
+ $fullpath ? $fullpath : "main()"
183
);
184
185
if (Common::checkIfBlizzard()) {
0 commit comments