summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2012-08-29 15:17:28 -0400
committerDavid Rothstein <drothstein@gmail.com>2012-08-29 15:17:28 -0400
commit8773e7f25b03b18ebe5f8091647fd5a28ee4888e (patch)
tree343ee8f7a9827795fe8be648dc71650a0e3a66c3
parentbed1034d36f571be755831931d7055a1b21e823c (diff)
downloadbrdo-8773e7f25b03b18ebe5f8091647fd5a28ee4888e.tar.gz
brdo-8773e7f25b03b18ebe5f8091647fd5a28ee4888e.tar.bz2
Issue #1359500 by Devin Carlson, theborg: Fixed Minor html bug in Seven's page.tpl.php (double occurrence of "ul" on secondary local tasks).
-rw-r--r--CHANGELOG.txt2
-rw-r--r--themes/seven/page.tpl.php2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 26f193178..8131d16ec 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 4d40cf89c..6ab3ae841 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">