Skip to content

Commit

Permalink
Fix #17912: display of "\n" in summary submenu
Browse files Browse the repository at this point in the history
Regression introduced by 0552366.
  • Loading branch information
dregad committed Nov 23, 2014
1 parent 52923d1 commit d5b3f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/html_api.php
Expand Up @@ -1032,7 +1032,7 @@ function print_summary_submenu() {
echo "\t\t" . '<ul class="menu">' . "\n";
# Plugins menu items - these are cooked links
foreach ( $t_menu_options as $t_menu_item ) {
echo "\t\t\t" . '<li>', $t_menu_item, '</li> . "\n"';
echo "\t\t\t" . '<li>', $t_menu_item, '</li>' . "\n";
}
echo "\t\t" . '</ul>' . "\n";
echo "\t" . '</div>' . "\n";
Expand Down

0 comments on commit d5b3f7c

Please sign in to comment.