summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-12-14 02:55:07 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-12-14 02:55:07 +0000
commitf35c27cb68b8b1883813f933aac7e88a94ac374c (patch)
tree1b2f40baaee315191684b430fc8cf7276712e80f
parent3b1e663aadbf433cdd3fd1fd5d92dbb7d2cd001d (diff)
downloadbrdo-f35c27cb68b8b1883813f933aac7e88a94ac374c.tar.gz
brdo-f35c27cb68b8b1883813f933aac7e88a94ac374c.tar.bz2
- Garland tweak: Swap picture and submitted info on comments. Makes more sense.
-rw-r--r--themes/garland/comment.tpl.php26
1 files changed, 15 insertions, 11 deletions
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index 65237e89c..b2646c695 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -1,19 +1,23 @@
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
- <?php print $picture ?>
-<?php if ($submitted): ?>
- <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
-<?php endif; ?>
+ <div class="clear-block">
+ <?php if ($submitted): ?>
+ <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
+ <?php endif; ?>
-<?php if ($comment->new) : ?>
- <a id="new"></a>
- <span class="new"><?php print drupal_ucfirst($new) ?></span>
-<?php endif; ?>
+ <?php if ($comment->new) : ?>
+ <a id="new"></a>
+ <span class="new"><?php print drupal_ucfirst($new) ?></span>
+ <?php endif; ?>
+
+ <?php print $picture ?>
- <h3><?php print $title ?></h3>
+ <h3><?php print $title ?></h3>
- <div class="content">
- <?php print $content ?>
+ <div class="content">
+ <?php print $content ?>
+ </div>
+
</div>
<?php if ($links): ?>