After installing a YAML file where the settings were to "Create new menu items under an existing menu" (Primary links) the resulting menu is not ordered/weighted as the order set in the YAML file.
It seems that all menu items are weighted as "0" and the resulting menu is ordered alphabetically.
The same file and install method worked fine on Drupal 5.14 with Bones 5.x-0.5
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | bones-360769-1.patch | 426 bytes | redpuma |
Comments
Comment #1
redpuma commentedIt looks like line 386 of bones.module was missing a "$"
was
'weight' => weightshould be
'weight' => $weightAll works fine now.
Comment #2
redpuma commentedIt looks like line 386 of bones.module was missing a "$"
was
'weight' => weightshould be
'weight' => $weightAll works fine now.
Comment #3
joachim commentedHaven't tried patch, but confirming this fix.
Comment #4
usonian commentedThanks for the patch and the test. Fix committed to the D6 branch.