Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/04/2010 11:41:28 PM (16 years ago)
Author:
djpaul
Message:

Fix double-escaping of search string when performing search from the site-wide search box. Partially addresses #2776.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-templatetags.php

    r3503 r3511  
    457457        $search_value = __( 'Search anything...', 'buddypress' );
    458458        if ( !empty( $_GET['s'] ) )
    459                 $search_value = $_GET['s'];
     459                $search_value = stripslashes( $_GET['s'] );
    460460
    461461        ?>
Note: See TracChangeset for help on using the changeset viewer.