Skip to:
Content

BuddyPress.org

Changeset 2480


Ignore:
Timestamp:
01/30/2010 11:42:55 AM (16 years ago)
Author:
apeatling
Message:

Fixes #1730

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-notifications.php

    r2463 r2480  
    3636
    3737---------------------
    38 ', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes($content) ), $message_link );
     38', 'buddypress' ), $poster_name, wp_filter_kses( stripslashes_deep($content) ), $message_link );
    3939
    4040            $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  
    179179                </tr>
    180180                <?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() ) : ?>
    182182                <tr>
    183183                    <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  
    10101010    }
    10111011
    1012     if ( function_exists( 'bp_blogs_install' ) ) {
     1012    if ( function_exists( 'bp_blogs_install' ) && bp_core_is_multisite() ) {
    10131013        $selection_box .= '<option value="blogs">' . __( 'Blogs', 'buddypress' ) . '</option>';
    10141014    }
  • trunk/bp-groups/bp-groups-notifications.php

    r2463 r2480  
    257257
    258258---------------------
    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 );
    260260
    261261            $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.