Changeset 1305
- Timestamp:
- 04/03/2009 01:59:16 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-catchuri.php
r1284 r1305 199 199 status_header( 200 ); 200 200 $wp_query->is_404 = false; 201 $wp_query->is_page = true; 201 202 if ( $bp->current_component != BP_HOME_BLOG_SLUG ) 203 $wp_query->is_page = true; 202 204 } 203 205 -
trunk/bp-themes/buddypress-home/archive.php
r1189 r1305 43 43 </div> 44 44 45 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?> <?php comments_popup_link( 'No Comments »', '1 Comment »', '% Comments »'); ?></p>45 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?> <?php comments_popup_link( __( 'No Comments »', 'buddypress' ), __( '1 Comment »', 'buddypress' ), __( '% Comments »', 'buddypress' ) ); ?></p> 46 46 47 47 </div> -
trunk/bp-themes/buddypress-home/comments.php
r1288 r1305 22 22 <div id="comments-section"> 23 23 <?php if ($comments) : ?> 24 <h3 id="responses"><?php comments_number( 'No Responses', 'One Response', '% Responses');?> to “<?php the_title(); ?>”</h3>24 <h3 id="responses"><?php comments_number( __( 'No Responses', 'buddypress' ), __( 'One Response', 'buddypress' ), __( '% Responses', 'buddypress' ) );?> to “<?php the_title(); ?>”</h3> 25 25 26 26 <ol class="commentlist" id="comments"> -
trunk/bp-themes/buddypress-home/functions.php
r1303 r1305 47 47 global $bp, $query_string; 48 48 49 if ( $bp->current_component == BP_HOME_BLOG_SLUG 49 if ( $bp->current_component == BP_HOME_BLOG_SLUG ) { 50 50 $pos = strpos( $query_string, 'pagename=' . BP_HOME_BLOG_SLUG ); 51 51 -
trunk/bp-themes/buddypress-home/index.php
r1300 r1305 16 16 </div> 17 17 18 <p class="postmetadata"><span class="tags"><?php the_tags('Tags: ', ', ', '<br />'); ?></span> <span class="comments"><?php comments_popup_link( 'No Comments »', '1 Comment »', '% Comments »'); ?></span></p>18 <p class="postmetadata"><span class="tags"><?php the_tags('Tags: ', ', ', '<br />'); ?></span> <span class="comments"><?php comments_popup_link( __( 'No Comments »', 'buddypress' ), __( '1 Comment »', 'buddypress' ), __( '% Comments »', 'buddypress' ) ); ?></span></p> 19 19 20 20 <div class="clear"></div> -
trunk/bp-themes/buddypress-home/search.php
r1300 r1305 21 21 <small><?php the_time('l, F jS, Y') ?></small> 22 22 23 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?> <?php comments_popup_link( 'No Comments »', '1 Comment »', '% Comments »'); ?></p>23 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?> <?php comments_popup_link( __( 'No Comments »', 'buddypress' ), __( '1 Comment »', 'buddypress' ), __( '% Comments »', 'buddypress' ) ); ?></p> 24 24 </div> 25 25
Note: See TracChangeset
for help on using the changeset viewer.