Skip to content
Snippets Groups Projects
Commit c5c74792 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

add 'namespace' for automatically created navigation divs, fixes #12080

parent 3ecb3f16
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ $formsMap = array_map(function ($form) { ...@@ -92,7 +92,7 @@ $formsMap = array_map(function ($form) {
$anchor = str_replace(' ', '-', $anchor); $anchor = str_replace(' ', '-', $anchor);
return array( return array(
'anchor' => $anchor, 'anchor' => 'goto-' . $anchor,
'section-name' => $sectionName, 'section-name' => $sectionName,
'form' => $form 'form' => $form
); );
......
...@@ -114,7 +114,7 @@ $formsMap = array_map(function($form){ ...@@ -114,7 +114,7 @@ $formsMap = array_map(function($form){
$anchor = str_replace(' ', '-', $anchor); $anchor = str_replace(' ', '-', $anchor);
return array( return array(
'anchor' => $anchor, 'anchor' => 'goto-' . $anchor,
'section-name' => $sectionName, 'section-name' => $sectionName,
'form' => $form 'form' => $form
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment