Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/11/2013 08:11:43 PM (13 years ago)
Author:
boonebgorges
Message:

Adds filters to Blogs and Forums search form markup

Fixes #4974

Props dimensionmedia

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-forums/bp-forums-template.php

    r7298 r7345  
    13181318        }
    13191319
     1320/**
     1321 * Echoes the forums directory search form
     1322 */
    13201323function bp_directory_forums_search_form() {
    1321         global $bp;
    1322 
    13231324        $default_search_value = bp_get_search_default_text( 'forums' );
    1324         $search_value = !empty( $_REQUEST['fs'] ) ? stripslashes( $_REQUEST['fs'] ) : $default_search_value;  ?>
    1325 
    1326         <form action="" method="get" id="search-forums-form">
    1327                 <label><input type="text" name="s" id="forums_search" placeholder="<?php echo esc_attr( $search_value ); ?>" /></label>
    1328                 <input type="submit" id="forums_search_submit" name="forums_search_submit" value="<?php _e( 'Search', 'buddypress' ); ?>" />
    1329         </form>
    1330 
    1331 <?php
     1325        $search_value = !empty( $_REQUEST['fs'] ) ? stripslashes( $_REQUEST['fs'] ) : $default_search_value;
     1326
     1327        $search_form_html = '<form action="" method="get" id="search-forums-form">
     1328                <label><input type="text" name="s" id="forums_search" placeholder="'. esc_attr( $search_value ) .'" /></label>
     1329                <input type="submit" id="forums_search_submit" name="forums_search_submit" value="' . __( 'Search', 'buddypress' ) . '" />
     1330        </form>';
     1331
     1332        echo apply_filters( 'bp_directory_forums_search_form', $search_form_html );
    13321333}
    13331334
Note: See TracChangeset for help on using the changeset viewer.