Making WordPress.org


Ignore:
Timestamp:
06/02/2015 09:17:54 PM (9 years ago)
Author:
johnjamesjacoby
Message:

BuddyPress.org: Use https scheme across relevant URLs.

Props netweb. Fixes #1069.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php

    r1468 r1644  
    105105function bb_base_plugin_search_form() {
    106106?>
    107    
     107
    108108    <form role="search" method="get" id="searchform" action="">
    109109        <div>
     
    119119
    120120function bb_base_topic_search_query( $escaped = true ) {
    121    
     121
    122122    if ( empty( $_GET['ts'] ) ) {
    123123        return false;
     
    133133
    134134function bb_base_reply_search_query( $escaped = true ) {
    135    
     135
    136136    if ( empty( $_GET['rs'] ) ) {
    137137        return false;
     
    147147
    148148function bb_base_plugin_search_query( $escaped = true ) {
    149    
     149
    150150    if ( empty( $_GET['ps'] ) ) {
    151151        return false;
     
    272272
    273273    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 ) ) ) );
    275275
    276276        if ( is_wp_error( $request ) ) {
Note: See TracChangeset for help on using the changeset viewer.