Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion language/en-GB/en-GB.mod_menu.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
MOD_MENU="Menu"
MOD_MENU_FIELD_ACTIVE_LABEL="Base Item"
MOD_MENU_FIELD_ALLCHILDREN_LABEL="Show Sub-menu Items"
MOD_MENU_FIELD_CLASS_LABEL="Menu Class Suffix"
MOD_MENU_FIELD_CLASS_LABEL="Menu Class"
MOD_MENU_FIELD_ENDLEVEL_LABEL="End Level"
MOD_MENU_FIELD_MENUTYPE_LABEL="Select Menu"
MOD_MENU_FIELD_STARTLEVEL_LABEL="Start Level"
Expand Down
2 changes: 1 addition & 1 deletion modules/mod_menu/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// The menu class is deprecated. Use nav instead
?>
<ul<?php echo $id; ?> class="nav flex-column<?php echo $class_sfx; ?>">
<ul<?php echo $id; ?> class="nav flex-column <?php echo $class_sfx; ?>">
<?php foreach ($list as $i => &$item)
{
$class = 'nav-item';
Expand Down