Changeset 2277
- Timestamp:
- 01/09/2010 09:58:51 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 19 edited
-
bp-activity/bp-activity-notifications.php (modified) (2 diffs)
-
bp-activity/bp-activity-templatetags.php (modified) (2 diffs)
-
bp-blogs/bp-blogs-templatetags.php (modified) (2 diffs)
-
bp-core/bp-core-settings.php (modified) (1 diff)
-
bp-core/bp-core-templatetags.php (modified) (1 diff)
-
bp-forums/bp-forums-templatetags.php (modified) (1 diff)
-
bp-friends/bp-friends-templatetags.php (modified) (1 diff)
-
bp-themes/bp-default/archive.php (modified) (3 diffs)
-
bp-themes/bp-default/attachment.php (modified) (1 diff)
-
bp-themes/bp-default/comments.php (modified) (1 diff)
-
bp-themes/bp-default/index.php (modified) (2 diffs)
-
bp-themes/bp-default/page.php (modified) (1 diff)
-
bp-themes/bp-default/search.php (modified) (3 diffs)
-
bp-themes/bp-default/single.php (modified) (2 diffs)
-
bp-themes/bp-sn-parent/archive.php (modified) (2 diffs)
-
bp-themes/bp-sn-parent/index.php (modified) (1 diff)
-
bp-themes/bp-sn-parent/search.php (modified) (2 diffs)
-
bp-themes/bp-sn-parent/single.php (modified) (1 diff)
-
bp-xprofile/bp-xprofile-classes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-notifications.php
r2261 r2277 19 19 $ud = get_userdata( $original_activity->user_id ); 20 20 $to = $ud->user_email; 21 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( '%s replied to one of your updates', 'buddypress' ), stripslashes ($poster_name) );21 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( '%s replied to one of your updates', 'buddypress' ), stripslashes_deep( $poster_name ) ); 22 22 23 23 $message = sprintf( __( … … 29 29 30 30 --------------------- 31 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes ($content) ), $thread_link );31 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes_deep( $content ) ), $thread_link ); 32 32 33 33 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); -
trunk/bp-activity/bp-activity-templatetags.php
r2276 r2277 53 53 'total' => ceil( (int)$this->total_activity_count / (int)$this->pag_num ), 54 54 'current' => (int)$this->pag_page, 55 'prev_text' => '&la quo;',56 'next_text' => '&ra quo;',55 'prev_text' => '←', 56 'next_text' => '→', 57 57 'mid_size' => 1 58 58 )); … … 447 447 $content .= '<li id="acomment-' . $comment->id . '">'; 448 448 $content .= '<div class="acomment-avatar">' . bp_core_fetch_avatar( array( 'item_id' => $comment->user_id, 'width' => 25, 'height' => 25, 'email' => $comment->user_email ) ) . '</div>'; 449 $content .= '<div class="acomment-meta"><a href="' . bp_core_get_user_domain( $comment->user_id, $comment->user_nicename, $comment->user_login ) . '">' . esc_attr($comment->user_fullname ) . '</a> · ' . sprintf( __( '%s ago', 'buddypress' ), bp_core_time_since( strtotime( $comment->date_recorded ) ) );449 $content .= '<div class="acomment-meta"><a href="' . bp_core_get_user_domain( $comment->user_id, $comment->user_nicename, $comment->user_login ) . '">' . apply_filters( 'bp_get_member_name', $comment->user_fullname ) . '</a> · ' . sprintf( __( '%s ago', 'buddypress' ), bp_core_time_since( strtotime( $comment->date_recorded ) ) ); 450 450 451 451 /* Reply link */ -
trunk/bp-blogs/bp-blogs-templatetags.php
r2255 r2277 353 353 'total' => ceil($this->total_post_count / $this->pag_num), 354 354 'current' => $this->pag_page, 355 'prev_text' => '&la quo;',356 'next_text' => '&ra quo;',355 'prev_text' => '←', 356 'next_text' => '→', 357 357 'mid_size' => 1 358 358 )); … … 1034 1034 <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?> 1035 1035 <p> 1036 <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog &ra quo;', 'buddypress') ?>" />1036 <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog →', 'buddypress') ?>" /> 1037 1037 </p> 1038 1038 -
trunk/bp-core/bp-core-settings.php
r2168 r2277 190 190 191 191 <div class="submit"> 192 <input type="submit" disabled="disabled" value="<?php _e( 'Delete My Account', 'buddypress' ) ?> &ra quo;" id="delete-account-button" name="delete-account-button" /></p>192 <input type="submit" disabled="disabled" value="<?php _e( 'Delete My Account', 'buddypress' ) ?> →" id="delete-account-button" name="delete-account-button" /></p> 193 193 </div> 194 194 -
trunk/bp-core/bp-core-templatetags.php
r2274 r2277 242 242 add_filter( 'bp_get_member_name', 'wp_filter_kses' ); 243 243 add_filter( 'bp_get_member_name', 'stripslashes' ); 244 add_filter( 'bp_get_member_name', 'strip_tags' ); 244 245 245 246 function bp_member_last_active() { -
trunk/bp-forums/bp-forums-templatetags.php
r2209 r2277 720 720 'total' => ceil($this->total_post_count / $this->pag_num), 721 721 'current' => $this->pag_page, 722 'prev_text' => '&la quo;',723 'next_text' => '&ra quo;',722 'prev_text' => '←', 723 'next_text' => '→', 724 724 'mid_size' => 1 725 725 )); -
trunk/bp-friends/bp-friends-templatetags.php
r2276 r2277 38 38 ?> 39 39 <div class="info-group"> 40 <h4><?php bp_word_or_name( __( "My Friends", 'buddypress' ), __( "%s's Friends", 'buddypress' ) ) ?> (<?php echo BP_Friends_Friendship::total_friend_count( $bp->displayed_user->id ) ?>) <span><a href="<?php echo $bp->displayed_user->domain . $bp->friends->slug ?>"><?php _e('See All', 'buddypress') ?> &ra quo;</a></span></h4>40 <h4><?php bp_word_or_name( __( "My Friends", 'buddypress' ), __( "%s's Friends", 'buddypress' ) ) ?> (<?php echo BP_Friends_Friendship::total_friend_count( $bp->displayed_user->id ) ?>) <span><a href="<?php echo $bp->displayed_user->domain . $bp->friends->slug ?>"><?php _e('See All', 'buddypress') ?> →</a></span></h4> 41 41 42 42 <?php if ( $friend_ids ) { ?> -
trunk/bp-themes/bp-default/archive.php
r2205 r2277 14 14 <div class="navigation"> 15 15 16 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>17 <div class="alignright"><?php previous_posts_link( __( 'Next Entries &ra quo;', 'buddypress' ) ) ?></div>16 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 17 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> 18 18 19 19 </div> … … 36 36 37 37 <div class="entry"> 38 <?php the_content( __( 'Read the rest of this entry &ra quo;', 'buddypress' ) ); ?>38 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 39 39 </div> 40 40 … … 50 50 <div class="navigation"> 51 51 52 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>53 <div class="alignright"><?php previous_posts_link( __( 'Next Entries &ra quo;', 'buddypress' ) ) ?></div>52 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 53 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> 54 54 55 55 </div> -
trunk/bp-themes/bp-default/attachment.php
r2170 r2277 18 18 <div class="post" id="post-<?php the_ID(); ?>"> 19 19 20 <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &ra quo; <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>20 <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> → <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> 21 21 22 22 <div class="entry"> 23 23 <p class="<?php echo $classname; ?>"><?php echo $attachment_link; ?><br /><?php echo basename($post->guid); ?></p> 24 24 25 <?php the_content( __('<p class="serif">Read the rest of this entry &ra quo;</p>', 'buddypress' ) ); ?>25 <?php the_content( __('<p class="serif">Read the rest of this entry →</p>', 'buddypress' ) ); ?> 26 26 27 27 <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?> -
trunk/bp-themes/bp-default/comments.php
r2224 r2277 101 101 102 102 <p class="log-in-out"> 103 <?php printf( __('Logged in as <a href="%1$s" title="%2$s">%2$s</a>.', 'buddypress'), bp_loggedin_user_domain(), $user_identity ); ?> <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php _e('Log out of this account', 'buddypress'); ?>"><?php _e('Log out &ra quo;', 'buddypress'); ?></a>103 <?php printf( __('Logged in as <a href="%1$s" title="%2$s">%2$s</a>.', 'buddypress'), bp_loggedin_user_domain(), $user_identity ); ?> <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php _e('Log out of this account', 'buddypress'); ?>"><?php _e('Log out →', 'buddypress'); ?></a> 104 104 </p> 105 105 -
trunk/bp-themes/bp-default/index.php
r2204 r2277 27 27 28 28 <div class="entry"> 29 <?php the_content( __( 'Read the rest of this entry &ra quo;', 'buddypress' ) ); ?>29 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 30 30 </div> 31 31 … … 41 41 <div class="navigation"> 42 42 43 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>44 <div class="alignright"><?php previous_posts_link( __( 'Next Entries &ra quo;', 'buddypress' ) ) ?></div>43 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 44 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> 45 45 46 46 </div> -
trunk/bp-themes/bp-default/page.php
r2170 r2277 16 16 <div class="entry"> 17 17 18 <?php the_content( __( '<p class="serif">Read the rest of this page &ra quo;</p>', 'buddypress' ) ); ?>18 <?php the_content( __( '<p class="serif">Read the rest of this page →</p>', 'buddypress' ) ); ?> 19 19 20 20 <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?> -
trunk/bp-themes/bp-default/search.php
r2205 r2277 15 15 16 16 <div class="navigation"> 17 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>18 <div class="alignright"><?php previous_posts_link( __( 'Next Entries &ra quo;', 'buddypress' ) ) ?></div>17 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 18 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> 19 19 </div> 20 20 … … 36 36 37 37 <div class="entry"> 38 <?php the_content( __( 'Read the rest of this entry &ra quo;', 'buddypress' ) ); ?>38 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 39 39 </div> 40 40 … … 49 49 50 50 <div class="navigation"> 51 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>52 <div class="alignright"><?php previous_posts_link( __( 'Next Entries &ra quo;', 'buddypress' ) ) ?></div>51 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 52 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> 53 53 </div> 54 54 -
trunk/bp-themes/bp-default/single.php
r2204 r2277 12 12 <div class="item-options"> 13 13 14 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>15 <div class="alignright"><?php previous_posts_link( __( 'Next Entries &ra quo;', 'buddypress' ) ) ?></div>14 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 15 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> 16 16 17 17 </div> … … 30 30 31 31 <div class="entry"> 32 <?php the_content( __( 'Read the rest of this entry &ra quo;', 'buddypress' ) ); ?>32 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 33 33 34 34 <?php wp_link_pages(array('before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?> -
trunk/bp-themes/bp-sn-parent/archive.php
r2077 r2277 15 15 <div class="navigation"> 16 16 17 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>17 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 18 18 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 19 19 … … 43 43 <div class="navigation"> 44 44 45 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>45 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 46 46 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 47 47 -
trunk/bp-themes/bp-sn-parent/index.php
r2077 r2277 35 35 <div class="navigation"> 36 36 37 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>37 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 38 38 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 39 39 -
trunk/bp-themes/bp-sn-parent/search.php
r2077 r2277 14 14 15 15 <div class="navigation"> 16 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>16 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 17 17 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 18 18 </div> … … 38 38 39 39 <div class="navigation"> 40 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>40 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 41 41 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 42 42 </div> -
trunk/bp-themes/bp-sn-parent/single.php
r2077 r2277 13 13 <div class="item-options"> 14 14 15 <div class="alignleft"><?php next_posts_link( __( '&la quo; Previous Entries', 'buddypress' ) ) ?></div>15 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 16 16 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 17 17 -
trunk/bp-xprofile/bp-xprofile-classes.php
r2088 r2277 165 165 166 166 <p class="submit" style="text-align: left"> 167 <input type="submit" name="saveGroup" value="<?php echo attribute_escape( $title ); ?> &ra quo;" />167 <input type="submit" name="saveGroup" value="<?php echo attribute_escape( $title ); ?> →" /> 168 168 </p> 169 169 … … 583 583 584 584 <p class="submit"> 585 <input type="submit" value="<?php _e("Save", 'buddypress') ?> &ra quo;" name="saveField" id="saveField" style="font-weight: bold" />585 <input type="submit" value="<?php _e("Save", 'buddypress') ?> →" name="saveField" id="saveField" style="font-weight: bold" /> 586 586 <?php _e('or', 'buddypress') ?> <a href="admin.php?page=bp-profile-setup" style="color: red"><?php _e( 'Cancel', 'buddypress' ) ?></a> 587 587 </p>
Note: See TracChangeset
for help on using the changeset viewer.