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 c85ba15 commit 5b3ac77Copy full SHA for 5b3ac77
ZendServer/DepH/Deployment/Deployment.php
@@ -83,6 +83,9 @@ public function getCurrentAction() {
83
$stack = array_reverse(debug_backtrace(), true);
84
85
foreach ($stack as $item) {
86
+ if (!isset($item['file'])) {
87
+ continue;
88
+ }
89
$filename = basename($item['file']);
90
if (false !== $key = array_search($filename, $this->actionScriptNames)) {
91
return $key;
0 commit comments