Skip to content
Snippets Groups Projects
Commit 7782b1ac authored by Steven Wittens's avatar Steven Wittens
Browse files

- #27844: Simplify pushbutton link generation.

parent 8660655a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -34,11 +34,7 @@ ...@@ -34,11 +34,7 @@
</td> </td>
<td class="primary-links" width="70%" align="center" valign="middle"> <td class="primary-links" width="70%" align="center" valign="middle">
<?php if (is_array($primary_links)) : ?> <?php print theme('links', $primary_links) ?>
<?php foreach ($primary_links as $link): ?>
<?php print $link?> |
<?php endforeach; ?>
<?php endif; ?>
</td> </td>
</tr> </tr>
</table> </table>
...@@ -46,11 +42,7 @@ ...@@ -46,11 +42,7 @@
<table id="secondary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%"> <table id="secondary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
<tr> <tr>
<td class="secondary-links" width="75%" align="center" valign="middle"> <td class="secondary-links" width="75%" align="center" valign="middle">
<?php if (is_array($secondary_links)) : ?> <?php print theme('links', $secondary_links) ?>
<?php foreach ($secondary_links as $link): ?>
<?php print $link?> |
<?php endforeach; ?>
<?php endif; ?>
</td> </td>
<td width="25%" align="center" valign="middle"> <td width="25%" align="center" valign="middle">
<?php if ($search_box): ?> <?php if ($search_box): ?>
......
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