summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-05-05 22:22:46 +0000
committerDries Buytaert <dries@buytaert.net>2005-05-05 22:22:46 +0000
commit2debcfb1efd074f310a64afa7e145d84031ed7f2 (patch)
treec0e3c19d72371e6236d26e80c49347b23d10e5f5 /themes
parent381853c6b9fc493a32645eb83f21993d5cf4796b (diff)
downloadbrdo-2debcfb1efd074f310a64afa7e145d84031ed7f2.tar.gz
brdo-2debcfb1efd074f310a64afa7e145d84031ed7f2.tar.bz2
- Patch #15595 by Stefan and Djun: improved status messages.
TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! .
Diffstat (limited to 'themes')
-rw-r--r--themes/pushbutton/page.tpl.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/themes/pushbutton/page.tpl.php b/themes/pushbutton/page.tpl.php
index ee3e692a7..f10f65927 100644
--- a/themes/pushbutton/page.tpl.php
+++ b/themes/pushbutton/page.tpl.php
@@ -36,7 +36,7 @@
<td class="primary-links" width="70%" align="center" valign="middle">
<?php if (is_array($primary_links)) : ?>
<?php foreach ($primary_links as $link): ?>
- <?php print $link?> |
+ <?php print $link?> |
<?php endforeach; ?>
<?php endif; ?>
</td>
@@ -48,7 +48,7 @@
<td class="secondary-links" width="75%" align="center" valign="middle">
<?php if (is_array($secondary_links)) : ?>
<?php foreach ($secondary_links as $link): ?>
- <?php print $link?> |
+ <?php print $link?> |
<?php endforeach; ?>
<?php endif; ?>
</td>
@@ -71,43 +71,43 @@
<td id="sidebar-left">
<?php print $sidebar_left ?>
</td>
- <?php endif; ?>
-
+ <?php endif; ?>
+
<td valign="top">
<?php if ($mission != ""): ?>
<div id="mission"><?php print $mission ?></div>
<?php endif; ?>
-
+
<div id="main">
<?php if ($title != ""): ?>
<?php print $breadcrumb ?>
<h1 class="title"><?php print $title ?></h1>
-
+
<?php if ($tabs != ""): ?>
<div class="tabs"><?php print $tabs ?></div>
<?php endif; ?>
-
+
<?php endif; ?>
-
+
<?php if ($help != ""): ?>
<div id="help"><?php print $help ?></div>
<?php endif; ?>
-
+
<?php if ($messages != ""): ?>
<?php print $messages ?>
<?php endif; ?>
-
+
<!-- start main content -->
<?php print($content) ?>
<!-- end main content -->
-
+
</div><!-- main -->
</td>
<?php if ($sidebar_right != ""): ?>
<td id="sidebar-right">
<?php print $sidebar_right ?>
</td>
- <?php endif; ?>
+ <?php endif; ?>
</tr>
</table>
@@ -117,13 +117,13 @@
<?php if (is_array($primary_links)) : ?>
<div class="primary-links">
<?php foreach ($primary_links as $link): ?>
- <?php print $link?> |
+ <?php print $link?> |
<?php endforeach; ?>
</div>
<?php endif; ?>
<?php if (is_array($secondary_links)) : ?>
<div class="secondary-links">
- <?php foreach ($secondary_links as $link): ?>
+ <?php foreach ($secondary_links as $link): ?>
<?php print $link?> |
<?php endforeach; ?>
</div>