mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
add 'namespace' for automatically created navigation divs, fixes #12080
This commit is contained in:
parent
3ecb3f16bf
commit
c5c74792d1
2 changed files with 2 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ $formsMap = array_map(function ($form) {
|
|||
$anchor = str_replace(' ', '-', $anchor);
|
||||
|
||||
return array(
|
||||
'anchor' => $anchor,
|
||||
'anchor' => 'goto-' . $anchor,
|
||||
'section-name' => $sectionName,
|
||||
'form' => $form
|
||||
);
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ $formsMap = array_map(function($form){
|
|||
$anchor = str_replace(' ', '-', $anchor);
|
||||
|
||||
return array(
|
||||
'anchor' => $anchor,
|
||||
'anchor' => 'goto-' . $anchor,
|
||||
'section-name' => $sectionName,
|
||||
'form' => $form
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue