Ticket #4974: 4974.3.diff
File 4974.3.diff, 2.6 KB (added by , 11 years ago) |
---|
-
bp-blogs/bp-blogs-template.php
794 794 function bp_directory_blogs_search_form() { 795 795 796 796 $default_search_value = bp_get_search_default_text(); 797 $search_value = !empty( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : $default_search_value; ?> 797 $search_value = !empty( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : $default_search_value; 798 799 $search_form_html = '<form action="" method="get" id="search-blogs-form"> 800 <label><input type="text" name="s" id="blogs_search" placeholder="'. esc_attr( $search_value ) .'" /></label> 801 <input type="submit" id="blogs_search_submit" name="blogs_search_submit" value="' . __( 'Search', 'buddypress' ) . '" /> 802 </form>'; 803 804 echo apply_filters( 'bp_directory_blogs_search_form', $search_form_html ); 798 805 799 <form action="" method="get" id="search-blogs-form"> 800 <label><input type="text" name="s" id="blogs_search" placeholder="<?php echo esc_attr( $search_value ) ?>" /></label> 801 <input type="submit" id="blogs_search_submit" name="blogs_search_submit" value="<?php _e( 'Search', 'buddypress' ) ?>" /> 802 </form> 803 804 <?php 806 805 807 } 806 808 807 809 /** -
bp-forums/bp-forums-template.php
1321 1321 global $bp; 1322 1322 1323 1323 $default_search_value = bp_get_search_default_text( 'forums' ); 1324 $search_value = !empty( $_REQUEST['fs'] ) ? stripslashes( $_REQUEST['fs'] ) : $default_search_value; ?>1324 $search_value = !empty( $_REQUEST['fs'] ) ? stripslashes( $_REQUEST['fs'] ) : $default_search_value; 1325 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> 1326 $search_form_html = '<form action="" method="get" id="search-forums-form"> 1327 <label><input type="text" name="s" id="forums_search" placeholder="'. esc_attr( $search_value ) .'" /></label> 1328 <input type="submit" id="forums_search_submit" name="forums_search_submit" value="' . __( 'Search', 'buddypress' ) . '" /> 1329 </form>'; 1330 1331 echo apply_filters( 'bp_directory_forums_search_form', $search_form_html ); 1330 1332 1331 <?php 1333 1332 1334 } 1333 1335 1334 1336 function bp_forum_permalink( $forum_id = 0 ) {