Skip to content
Snippets Groups Projects
Commit 8773e7f2 authored by David Rothstein's avatar David Rothstein
Browse files

Issue #1359500 by Devin Carlson, theborg: Fixed Minor html bug in Seven's...

Issue #1359500 by Devin Carlson, theborg: Fixed Minor html bug in Seven's page.tpl.php (double occurrence of "ul" on secondary local tasks).
parent bed1034d
No related merge requests found
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
......
......@@ -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">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment