Changeset 2480
- Timestamp:
- 01/30/2010 11:42:55 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
bp-activity/bp-activity-notifications.php (modified) (1 diff)
-
bp-core/bp-core-admin.php (modified) (1 diff)
-
bp-core/bp-core-templatetags.php (modified) (1 diff)
-
bp-groups/bp-groups-notifications.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-notifications.php
r2463 r2480 36 36 37 37 --------------------- 38 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes ($content) ), $message_link );38 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes_deep($content) ), $message_link ); 39 39 40 40 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); -
trunk/bp-core/bp-core-admin.php
r2374 r2480 179 179 </tr> 180 180 <?php endif; ?> 181 <?php if ( file_exists( BP_PLUGIN_DIR . '/bp-blogs.php') ) : ?>181 <?php if ( file_exists( BP_PLUGIN_DIR . '/bp-blogs.php') && bp_core_is_multisite() ) : ?> 182 182 <tr> 183 183 <td><h3><?php _e( 'Blog Tracking', 'buddypress' ) ?></h3><p><?php _e( 'Tracks blogs, blog posts and blogs comments for a user across a WPMU installation.', 'buddypress' ) ?></p></td> -
trunk/bp-core/bp-core-templatetags.php
r2474 r2480 1010 1010 } 1011 1011 1012 if ( function_exists( 'bp_blogs_install' ) ) {1012 if ( function_exists( 'bp_blogs_install' ) && bp_core_is_multisite() ) { 1013 1013 $selection_box .= '<option value="blogs">' . __( 'Blogs', 'buddypress' ) . '</option>'; 1014 1014 } -
trunk/bp-groups/bp-groups-notifications.php
r2463 r2480 257 257 258 258 --------------------- 259 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes ( $group->name ) ), wp_filter_kses( stripslashes($content) ), $message_link );259 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes_deep( $group->name ) ), wp_filter_kses( stripslashes_deep($content) ), $message_link ); 260 260 261 261 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
Note: See TracChangeset
for help on using the changeset viewer.