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 793f521 commit 2ee2e49Copy full SHA for 2ee2e49
src/Application/Navigation.php
@@ -170,7 +170,11 @@ public function getStack(): array
170
*/
171
public function getStackEntryUrl(int $index): string
172
{
173
- return $this->urlStack[$index]['url'];
+ if (isset($this->urlStack[$index])) {
174
+ return $this->urlStack[$index]['url'];
175
+ } else {
176
+ return '';
177
+ }
178
}
179
180
/**
0 commit comments