- Timestamp:
- 06/02/2015 09:17:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php
r1468 r1644 105 105 function bb_base_plugin_search_form() { 106 106 ?> 107 107 108 108 <form role="search" method="get" id="searchform" action=""> 109 109 <div> … … 119 119 120 120 function bb_base_topic_search_query( $escaped = true ) { 121 121 122 122 if ( empty( $_GET['ts'] ) ) { 123 123 return false; … … 133 133 134 134 function bb_base_reply_search_query( $escaped = true ) { 135 135 136 136 if ( empty( $_GET['rs'] ) ) { 137 137 return false; … … 147 147 148 148 function bb_base_plugin_search_query( $escaped = true ) { 149 149 150 150 if ( empty( $_GET['ps'] ) ) { 151 151 return false; … … 272 272 273 273 if ( empty( $res ) ) { 274 $request = wp_remote_post( 'http ://api.wordpress.org/plugins/info/1.0/', array( 'body' => array( 'action' => $action, 'request' => serialize( $args ) ) ) );274 $request = wp_remote_post( 'https://api.wordpress.org/plugins/info/1.0/', array( 'body' => array( 'action' => $action, 'request' => serialize( $args ) ) ) ); 275 275 276 276 if ( is_wp_error( $request ) ) {
Note: See TracChangeset
for help on using the changeset viewer.