Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
7e5ab9ab05d3a20fc6446e83611125e61e925ce6...aeecca160d9fec2780fb65136ff5b192c69d5e50
Commits (1)
Include path component of .link pages in menus/submenus.
· aeecca16
echicken
authored
Feb 24, 2022
Probably resolves the "Invalid page" problem reported by W6RAY.
aeecca16
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
webv4/components/navbar.xjs
webv4/components/navbar.xjs
+1
-1
No files found.
webv4/components/navbar.xjs
View file @
aeecca16
...
...
@@ -19,7 +19,7 @@
?>
<li>
<?xjs if (e.type == 'link') { ?>
<a class="dropdown-item" href="./?page=<?xjs write(e.page); ?>" target="_blank">
<a class="dropdown-item" href="./?page=<?xjs write(
(path || '') +
e.page); ?>" target="_blank">
<?xjs } else { ?>
<a class="dropdown-item" href="./?page=<?xjs write((path || '') + e.page); ?>">
<?xjs } ?>
...
...