Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/13/2009 05:42:28 PM (17 years ago)
Author:
sambauers
Message:

Prettier Kakumei including a more semantic form markup. Fixes #949

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-templates/kakumei/profile.php

    r2144 r2177  
    3939<?php foreach ($posts as $bb_post) : $topic = get_topic( $bb_post->topic_id ) ?>
    4040<li<?php alt_class('replies'); ?>>
    41     <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a>
    42     <?php if ( $user->ID == bb_get_current_user_info( 'id' ) ) printf(__('You last replied: %s ago.'), bb_get_post_time()); else printf(__('User last replied: %s ago.'), bb_get_post_time()); ?>
     41    <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> -
     42    <?php if ( $user->ID == bb_get_current_user_info( 'id' ) ) printf(__('You last replied: %s ago'), bb_get_post_time()); else printf(__('User last replied: %s ago'), bb_get_post_time()); ?> |
    4343
    4444    <span class="freshness"><?php
     
    4646            printf(__('Most recent reply: %s ago'), get_topic_time());
    4747        else
    48             _e('No replies since.');
     48            _e('No replies since');
    4949    ?></span>
    5050</li>
     
    6464<?php foreach ($topics as $topic) : ?>
    6565<li<?php alt_class('topics'); ?>>
    66     <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a>
    67     <?php printf(__('Started: %s ago'), get_topic_start_time()); ?>
     66    <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> -
     67    <?php printf(__('Started: %s ago'), get_topic_start_time()); ?> |
    6868
    6969    <span class="freshness"><?php
    7070        if ( get_topic_start_time( 'timestamp' ) < get_topic_time( 'timestamp' ) )
    71             printf(__('Most recent reply: %s ago.'), get_topic_time());
     71            printf(__('Most recent reply: %s ago'), get_topic_time());
    7272        else
    7373            _e('No replies.');
Note: See TracChangeset for help on using the changeset viewer.