add 'namespace' for automatically created navigation divs, fixes #12080
This commit is contained in:
parent
3ecb3f16bf
commit
c5c74792d1
|
@ -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 New Issue