diff options
author | David Rothstein <drothstein@gmail.com> | 2012-08-29 15:17:28 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2012-08-29 15:17:28 -0400 |
commit | 8773e7f25b03b18ebe5f8091647fd5a28ee4888e (patch) | |
tree | 343ee8f7a9827795fe8be648dc71650a0e3a66c3 /themes | |
parent | bed1034d36f571be755831931d7055a1b21e823c (diff) | |
download | brdo-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).
Diffstat (limited to 'themes')
-rw-r--r-- | themes/seven/page.tpl.php | 2 |
1 files changed, 1 insertions, 1 deletions
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"> |