From 8773e7f25b03b18ebe5f8091647fd5a28ee4888e Mon Sep 17 00:00:00 2001 From: David Rothstein <drothstein@gmail.com> Date: Wed, 29 Aug 2012 15:17:28 -0400 Subject: [PATCH] Issue #1359500 by Devin Carlson, theborg: Fixed Minor html bug in Seven's page.tpl.php (double occurrence of "ul" on secondary local tasks). --- CHANGELOG.txt | 2 ++ themes/seven/page.tpl.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 26f193178273..8131d16ec03d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,8 @@ Drupal 7.16, xxxx-xx-xx (development version) ----------------------- +- Fixed double occurrence of a "ul" HTML tag on secondary local tasks in the + Seven theme (markup change). - Fixed a bug which caused shortcut set titles to be double-escaped. The fix replaces the "Edit shortcuts" menu item's title callback entry in hook_menu() with a new function that does not escape HTML characters (data structure diff --git a/themes/seven/page.tpl.php b/themes/seven/page.tpl.php index 4d40cf89c075..6ab3ae8417c9 100644 --- a/themes/seven/page.tpl.php +++ b/themes/seven/page.tpl.php @@ -11,7 +11,7 @@ <div id="page"> <?php if ($secondary_local_tasks): ?> - <div class="tabs-secondary clearfix"><ul class="tabs secondary"><?php print render($secondary_local_tasks); ?></ul></div> + <div class="tabs-secondary clearfix"><?php print render($secondary_local_tasks); ?></div> <?php endif; ?> <div id="content" class="clearfix"> -- GitLab