Skip to:
Content

BuddyPress.org

Ticket #6184: 6184.diff

File 6184.diff, 27.0 KB (added by mercime, 10 years ago)
  • .editorconfig

    diff --git .editorconfig .editorconfig
    index 7102043..1505052 100644
     
    22# editorconfig.org
    33
    44# WordPress Coding Standards
    5 # http://make.wordpress.org/core/handbook/coding-standards/
     5# https://make.wordpress.org/core/handbook/coding-standards/
    66
    77root = true
    88
  • bp-loader.php

    diff --git bp-loader.php bp-loader.php
    index 3314e27..c44971d 100644
     
    1111
    1212/**
    1313 * Plugin Name: BuddyPress
    14  * Plugin URI:  http://buddypress.org
     14 * Plugin URI:  https://buddypress.org
    1515 * Description: BuddyPress helps you run any kind of social network on your WordPress, with member profiles, activity streams, user groups, messaging, and more.
    1616 * Author:      The BuddyPress Community
    17  * Author URI:  http://buddypress.org
     17 * Author URI:  https://buddypress.org
    1818 * Version:     2.3-alpha
    1919 * Text Domain: buddypress
    2020 * Domain Path: /bp-languages/
  • src/bp-activity/bp-activity-admin.php

    diff --git src/bp-activity/bp-activity-admin.php src/bp-activity/bp-activity-admin.php
    index caa8df6..8e078b9 100644
    function bp_activity_admin_load() { 
    242242                // Help panel - sidebar links
    243243                get_current_screen()->set_help_sidebar(
    244244                        '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    245                         '<p>' . __( '<a href="http://codex.buddypress.org/buddypress-site-administration/managing-activity/">Managing Activity</a>', 'buddypress' ) . '</p>' .
    246                         '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     245                        '<p>' . __( '<a href="https://codex.buddypress.org/administrator-guide/activity-stream-management-panels/">Managing Activity</a>', 'buddypress' ) . '</p>' .
     246                        '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    247247                );
    248248
    249249                // Register metaboxes for the edit screen.
    function bp_activity_admin_load() { 
    287287                // Help panel - sidebar links
    288288                get_current_screen()->set_help_sidebar(
    289289                        '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    290                         '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     290                        '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    291291                );
    292292        }
    293293
  • src/bp-activity/bp-activity-akismet.php

    diff --git src/bp-activity/bp-activity-akismet.php src/bp-activity/bp-activity-akismet.php
    index 7c0b59e..7700f07 100644
    class BP_Akismet { 
    131131         *
    132132         * @since BuddyPress (1.6)
    133133         *
    134          * @see http://plugins.trac.wordpress.org/ticket/1232
     134         * @see https://plugins.trac.wordpress.org/ticket/1232
    135135         */
    136136        public function add_activity_stream_nonce() {
    137137                $form_id = '_bp_as_nonce';
    class BP_Akismet { 
    589589         *
    590590         * @since BuddyPress (1.6)
    591591         *
    592          * @see http://buddypress.trac.wordpress.org/ticket/3907
     592         * @see https://buddypress.trac.wordpress.org/ticket/3907
    593593         * @todo Update activity meta to allow >1 record with the same key (iterate through $history).
    594594         *
    595595         * @param object $item Activity item.
  • src/bp-activity/classes/class-bp-activity-feed.php

    diff --git src/bp-activity/classes/class-bp-activity-feed.php src/bp-activity/classes/class-bp-activity-feed.php
    index c6f95fa..35d47c2 100644
    class BP_Activity_Feed { 
    394394        <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
    395395        <description><?php echo $this->description ?></description>
    396396        <lastBuildDate><?php echo mysql2date( 'D, d M Y H:i:s O', bp_activity_get_last_updated(), false ); ?></lastBuildDate>
    397         <generator>http://buddypress.org/?v=<?php bp_version(); ?></generator>
     397        <generator>https://buddypress.org/?v=<?php bp_version(); ?></generator>
    398398        <language><?php bloginfo_rss( 'language' ); ?></language>
    399399        <ttl><?php echo $this->ttl; ?></ttl>
    400400        <sy:updatePeriod><?php echo $this->update_period; ?></sy:updatePeriod>
  • src/bp-blogs/bp-blogs-functions.php

    diff --git src/bp-blogs/bp-blogs-functions.php src/bp-blogs/bp-blogs-functions.php
    index 80f61a3..7e0b8d9 100644
    add_action( 'remove_user_from_blog', 'bp_blogs_remove_user_from_blog', 10, 2 ); 
    804804 * WordPress catches add-user-to-blog requests at init:10. In some cases, this
    805805 * can precede BP's Blogs component. This function bumps the priority of the
    806806 * core function, so that we can be sure that the Blogs component is loaded
    807  * first. See http://buddypress.trac.wordpress.org/ticket/3916.
     807 * first. See https://buddypress.trac.wordpress.org/ticket/3916.
    808808 *
    809809 * @since BuddyPress (1.6.0)
    810810 * @access private
  • src/bp-core/admin/bp-core-admin-components.php

    diff --git src/bp-core/admin/bp-core-admin-components.php src/bp-core/admin/bp-core-admin-components.php
    index 5b735d0..ba868a8 100644
    function bp_core_admin_get_components( $type = 'all' ) { 
    354354        $retired_components = array(
    355355                'forums' => array(
    356356                        'title'       => __( 'Group Forums', 'buddypress' ),
    357                         'description' => sprintf( __( 'BuddyPress Forums are retired. Use %s.', 'buddypress' ), '<a href="http://bbpress.org">bbPress</a>' )
     357                        'description' => sprintf( __( 'BuddyPress Forums are retired. Use %s.', 'buddypress' ), '<a href="https://bbpress.org/">bbPress</a>' )
    358358                ),
    359359        );
    360360
  • src/bp-core/admin/bp-core-admin-functions.php

    diff --git src/bp-core/admin/bp-core-admin-functions.php src/bp-core/admin/bp-core-admin-functions.php
    index bbff414..c8bbc57 100644
    function bp_core_add_contextual_help( $screen = '' ) { 
    461461                        // help panel - sidebar links
    462462                        $screen->set_help_sidebar(
    463463                                '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    464                                 '<p>' . __( '<a href="http://codex.buddypress.org/getting-started/configure-buddypress-components/#settings-buddypress-components">Managing Components</a>', 'buddypress' ) . '</p>' .
    465                                 '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     464                                '<p>' . __( '<a href="https://codex.buddypress.org/getting-started/configure-components/">Managing Components</a>', 'buddypress' ) . '</p>' .
     465                                '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    466466                        );
    467467                        break;
    468468
    function bp_core_add_contextual_help( $screen = '' ) { 
    479479                        // Help panel - sidebar links
    480480                        $screen->set_help_sidebar(
    481481                                '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    482                                 '<p>' . __( '<a href="http://codex.buddypress.org/getting-started/configure-buddypress-components/#settings-buddypress-pages">Managing Pages</a>', 'buddypress' ) . '</p>' .
    483                                 '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     482                                '<p>' . __( '<a href="https://codex.buddypress.org/getting-started/configure-components/#settings-buddypress-pages">Managing Pages</a>', 'buddypress' ) . '</p>' .
     483                                '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    484484                        );
    485485
    486486                        break;
    function bp_core_add_contextual_help( $screen = '' ) { 
    498498                        // Help panel - sidebar links
    499499                        $screen->set_help_sidebar(
    500500                                '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    501                                 '<p>' . __( '<a href="http://codex.buddypress.org/getting-started/configure-buddypress-components/#settings-buddypress-settings">Managing Settings</a>', 'buddypress' ) . '</p>' .
    502                                 '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     501                                '<p>' . __( '<a href="https://codex.buddypress.org/getting-started/configure-components/#settings-buddypress-settings">Managing Settings</a>', 'buddypress' ) . '</p>' .
     502                                '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    503503                        );
    504504
    505505                        break;
    function bp_core_add_contextual_help( $screen = '' ) { 
    517517                        // Help panel - sidebar links
    518518                        $screen->set_help_sidebar(
    519519                                '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    520                                 '<p>' . __( '<a href="http://codex.buddypress.org/getting-started/configure-buddypress-components/#users-profile-fields">Managing Profile Fields</a>', 'buddypress' ) . '</p>' .
    521                                 '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     520                                '<p>' . __( '<a href="https://codex.buddypress.org/administrator-guide/extended-profiles/">Managing Profile Fields</a>', 'buddypress' ) . '</p>' .
     521                                '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    522522                        );
    523523
    524524                        break;
  • src/bp-core/bp-core-admin.php

    diff --git src/bp-core/bp-core-admin.php src/bp-core/bp-core-admin.php
    index fa28be7..0e92360 100644
    class BP_Admin { 
    537537                                                        </div>
    538538                                                        <div class="welcome-panel-column welcome-panel-last">
    539539                                                                <h4><?php _e( 'Community and Support', 'buddypress'  ); ?></h4>
    540                                                                 <p class="welcome-icon welcome-learn-more" style="margin-right:10px"><?php _e( 'Looking for help? The <a href="http://codex.buddypress.org/">BuddyPress Codex</a> has you covered.', 'buddypress' ) ?></p>
    541                                                                 <p class="welcome-icon welcome-learn-more" style="margin-right:10px"><?php _e( 'Can&#8217;t find what you need? Stop by <a href="http://buddypress.org/support/">our support forums</a>, where active BuddyPress users and developers are waiting to share tips and more.', 'buddypress' ) ?></p>
     540                                                                <p class="welcome-icon welcome-learn-more" style="margin-right:10px"><?php _e( 'Looking for help? The <a href="https://codex.buddypress.org/">BuddyPress Codex</a> has you covered.', 'buddypress' ) ?></p>
     541                                                                <p class="welcome-icon welcome-learn-more" style="margin-right:10px"><?php _e( 'Can&#8217;t find what you need? Stop by <a href="https://buddypress.org/support/">our support forums</a>, where active BuddyPress users and developers are waiting to share tips and more.', 'buddypress' ) ?></p>
    542542                                                        </div>
    543543                                                </div>
    544544                                        </div>
    class BP_Admin { 
    644644                        <h4 class="wp-people-group"><?php _e( 'Project Leaders', 'buddypress' ); ?></h4>
    645645                        <ul class="wp-people-group " id="wp-people-group-project-leaders">
    646646                                <li class="wp-person" id="wp-person-johnjamesjacoby">
    647                                         <a href="http://profiles.wordpress.org/johnjamesjacoby"><img src="//www.gravatar.com/avatar/81ec16063d89b162d55efe72165c105f?s=60" class="gravatar" alt="John James Jacoby" /></a>
    648                                         <a class="web" href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>
     647                                        <a href="https://profiles.wordpress.org/johnjamesjacoby"><img src="//www.gravatar.com/avatar/81ec16063d89b162d55efe72165c105f?s=60" class="gravatar" alt="John James Jacoby" /></a>
     648                                        <a class="web" href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>
    649649                                        <span class="title"><?php _e( 'Project Lead', 'buddypress' ); ?></span>
    650650                                </li>
    651651                                <li class="wp-person" id="wp-person-boonebgorges">
    652                                         <a href="http://profiles.wordpress.org/boonebgorges"><img src="//www.gravatar.com/avatar/9cf7c4541a582729a5fc7ae484786c0c?s=60" class="gravatar" alt="Boone B. Gorges" /></a>
    653                                         <a class="web" href="http://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>
     652                                        <a href="https://profiles.wordpress.org/boonebgorges"><img src="//www.gravatar.com/avatar/9cf7c4541a582729a5fc7ae484786c0c?s=60" class="gravatar" alt="Boone B. Gorges" /></a>
     653                                        <a class="web" href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>
    654654                                        <span class="title"><?php _e( 'Lead Developer', 'buddypress' ); ?></span>
    655655                                </li>
    656656                                <li class="wp-person" id="wp-person-djpaul">
    657                                         <a href="http://profiles.wordpress.org/djpaul"><img src="//www.gravatar.com/avatar/3bc9ab796299d67ce83dceb9554f75df?s=60" class="gravatar" alt="Paul Gibbs" /></a>
    658                                         <a class="web" href="http://profiles.wordpress.org/djpaul">Paul Gibbs</a>
     657                                        <a href="https://profiles.wordpress.org/djpaul"><img src="//www.gravatar.com/avatar/3bc9ab796299d67ce83dceb9554f75df?s=60" class="gravatar" alt="Paul Gibbs" /></a>
     658                                        <a class="web" href="https://profiles.wordpress.org/djpaul">Paul Gibbs</a>
    659659                                        <span class="title"><?php _e( 'Lead Developer', 'buddypress' ); ?></span>
    660660                                </li>
    661661                        </ul>
    class BP_Admin { 
    663663                        <h4 class="wp-people-group"><?php _e( 'Core Team', 'buddypress' ); ?></h4>
    664664                        <ul class="wp-people-group " id="wp-people-group-core-team">
    665665                                <li class="wp-person" id="wp-person-r-a-y">
    666                                         <a href="http://profiles.wordpress.org/r-a-y"><img src="//www.gravatar.com/avatar/3bfa556a62b5bfac1012b6ba5f42ebfa?s=60" class="gravatar" alt="Ray" /></a>
    667                                         <a class="web" href="http://profiles.wordpress.org/r-a-y">Ray</a>
     666                                        <a href="https://profiles.wordpress.org/r-a-y"><img src="//www.gravatar.com/avatar/3bfa556a62b5bfac1012b6ba5f42ebfa?s=60" class="gravatar" alt="Ray" /></a>
     667                                        <a class="web" href="https://profiles.wordpress.org/r-a-y">Ray</a>
    668668                                        <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span>
    669669                                </li>
    670670                                <li class="wp-person" id="wp-person-imath">
    671                                         <a href="http://profiles.wordpress.org/imath"><img src="//www.gravatar.com/avatar/8b208ca408dad63888253ee1800d6a03?s=60" class="gravatar" alt="Mathieu Viet" /></a>
    672                                         <a class="web" href="http://profiles.wordpress.org/imath">Mathieu Viet</a>
     671                                        <a href="https://profiles.wordpress.org/imath"><img src="//www.gravatar.com/avatar/8b208ca408dad63888253ee1800d6a03?s=60" class="gravatar" alt="Mathieu Viet" /></a>
     672                                        <a class="web" href="https://profiles.wordpress.org/imath">Mathieu Viet</a>
    673673                                        <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span>
    674674                                </li>
    675675                                <li class="wp-person" id="wp-person-mercime">
    676                                         <a href="http://profiles.wordpress.org/mercime"><img src="//www.gravatar.com/avatar/fae451be6708241627983570a1a1817a?s=60" class="gravatar" alt="Mercime" /></a>
    677                                         <a class="web" href="http://profiles.wordpress.org/mercime">Mercime</a>
     676                                        <a href="https://profiles.wordpress.org/mercime"><img src="//www.gravatar.com/avatar/fae451be6708241627983570a1a1817a?s=60" class="gravatar" alt="Mercime" /></a>
     677                                        <a class="web" href="https://profiles.wordpress.org/mercime">Mercime</a>
    678678                                        <span class="title"><?php _e( 'Navigator', 'buddypress' ); ?></span>
    679679                                </li>
    680680                                <li class="wp-person" id="wp-person-dcavins">
    681                                         <a href="http://profiles.wordpress.org/dcavins"><img src="//www.gravatar.com/avatar/a5fa7e83d59cb45ebb616235a176595a?s=60" class="gravatar" alt="David Cavins" /></a>
    682                                         <a class="web" href="http://profiles.wordpress.org/dcavins">David Cavins</a>
     681                                        <a href="https://profiles.wordpress.org/dcavins"><img src="//www.gravatar.com/avatar/a5fa7e83d59cb45ebb616235a176595a?s=60" class="gravatar" alt="David Cavins" /></a>
     682                                        <a class="web" href="https://profiles.wordpress.org/dcavins">David Cavins</a>
    683683                                        <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span>
    684684                                </li>
    685685                                <li class="wp-person" id="wp-person-tw2113">
    686                                         <a href="http://profiles.wordpress.org/tw2113"><img src="//www.gravatar.com/avatar/a5d7c934621fa1c025b83ee79bc62366?s=60" class="gravatar" alt="Michael Beckwith" /></a>
    687                                         <a class="web" href="http://profiles.wordpress.org/tw2113">Michael Beckwith</a>
     686                                        <a href="https://profiles.wordpress.org/tw2113"><img src="//www.gravatar.com/avatar/a5d7c934621fa1c025b83ee79bc62366?s=60" class="gravatar" alt="Michael Beckwith" /></a>
     687                                        <a class="web" href="https://profiles.wordpress.org/tw2113">Michael Beckwith</a>
    688688                                        <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span>
    689689                                </li>
    690690                        </ul>
    class BP_Admin { 
    692692                        <h4 class="wp-people-group"><?php _e( 'Recent Rockstars', 'buddypress' ); ?></h4>
    693693                        <ul class="wp-people-group " id="wp-people-group-rockstars">
    694694                                <li class="wp-person" id="wp-person-henry-wright">
    695                                         <a href="http://profiles.wordpress.org/henry.wright"><img src="//www.gravatar.com/avatar/0da2f1a9340d6af196b870f6c107a248?s=60" class="gravatar" alt="Henry Wright" /></a>
    696                                         <a class="web" href="http://profiles.wordpress.org/henry.wright">Henry Wright</a>
     695                                        <a href="https://profiles.wordpress.org/henry.wright"><img src="//www.gravatar.com/avatar/0da2f1a9340d6af196b870f6c107a248?s=60" class="gravatar" alt="Henry Wright" /></a>
     696                                        <a class="web" href="https://profiles.wordpress.org/henry.wright">Henry Wright</a>
    697697                                </li>
    698698                                <li class="wp-person" id="wp-person-danbp">
    699                                         <a href="http://profiles.wordpress.org/danbp"><img src="//www.gravatar.com/avatar/0deae2e7003027fbf153500cd3fa5501?s=60" class="gravatar" alt="danbp" /></a>
    700                                         <a class="web" href="http://profiles.wordpress.org/danbp">danbp</a>
     699                                        <a href="https://profiles.wordpress.org/danbp"><img src="//www.gravatar.com/avatar/0deae2e7003027fbf153500cd3fa5501?s=60" class="gravatar" alt="danbp" /></a>
     700                                        <a class="web" href="https://profiles.wordpress.org/danbp">danbp</a>
    701701                                </li>
    702702                                <li class="wp-person" id="wp-person-shanebp">
    703                                         <a href="http://profiles.wordpress.org/shanebp"><img src="//www.gravatar.com/avatar/ffd294ab5833ba14aaf175f9acc71cc4?s=60" class="gravatar" alt="shanebp" /></a>
    704                                         <a class="web" href="http://profiles.wordpress.org/shanebp">shanebp</a>
     703                                        <a href="https://profiles.wordpress.org/shanebp"><img src="//www.gravatar.com/avatar/ffd294ab5833ba14aaf175f9acc71cc4?s=60" class="gravatar" alt="shanebp" /></a>
     704                                        <a class="web" href="https://profiles.wordpress.org/shanebp">shanebp</a>
    705705                                </li>
    706706                                <li class="wp-person" id="wp-person-netweb">
    707                                         <a href="http://profiles.wordpress.org/netweb"><img src="//www.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=60" class="gravatar" alt="Stephen Edgar" /></a>
    708                                         <a class="web" href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>
     707                                        <a href="https://profiles.wordpress.org/netweb"><img src="//www.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=60" class="gravatar" alt="Stephen Edgar" /></a>
     708                                        <a class="web" href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>
    709709                                </li>
    710710                                <li class="wp-person" id="wp-person-hnla">
    711                                         <a href="http://profiles.wordpress.org/hnla"><img src="//www.gravatar.com/avatar/3860c955aa3f79f13b92826ae47d07fe?s=60" class="gravatar" alt="Hugo Ashmore" /></a>
    712                                         <a class="web" href="http://profiles.wordpress.org/hnla">Hugo</a>
     711                                        <a href="https://profiles.wordpress.org/hnla"><img src="//www.gravatar.com/avatar/3860c955aa3f79f13b92826ae47d07fe?s=60" class="gravatar" alt="Hugo Ashmore" /></a>
     712                                        <a class="web" href="https://profiles.wordpress.org/hnla">Hugo</a>
    713713                                </li>
    714714                        </ul>
    715715
  • src/bp-core/bp-core-catchuri.php

    diff --git src/bp-core/bp-core-catchuri.php src/bp-core/bp-core-catchuri.php
    index b056b94..a601ede 100644
    add_action( 'bp_init', '_bp_maybe_remove_redirect_canonical' ); 
    759759 *
    760760 * @since BuddyPress (1.6.1)
    761761 *
    762  * @link http://buddypress.trac.wordpress.org/ticket/4329
    763  * @link http://buddypress.trac.wordpress.org/ticket/4415
     762 * @link https://buddypress.trac.wordpress.org/ticket/4329
     763 * @link https://buddypress.trac.wordpress.org/ticket/4415
    764764 */
    765765function _bp_rehook_maybe_redirect_404() {
    766766        if ( defined( 'NOBLOGREDIRECT' ) ) {
  • src/bp-core/bp-core-template.php

    diff --git src/bp-core/bp-core-template.php src/bp-core/bp-core-template.php
    index 3ab9112..3d6e6f2 100644
    function bp_registration_needs_activation() { 
    831831 *
    832832 * @since BuddyPress (1.7.0)
    833833 *
    834  * @see http://buddypress.trac.wordpress.org/ticket/4401
     834 * @see https://buddypress.trac.wordpress.org/ticket/4401
    835835 *
    836836 * @param array $args {
    837837 *     Array of optional parameters.
    function bp_get_nav_menu_items() { 
    26512651                        continue;
    26522652                }
    26532653
    2654                 // Get the correct menu link. See http://buddypress.trac.wordpress.org/ticket/4624
     2654                // Get the correct menu link. See https://buddypress.trac.wordpress.org/ticket/4624
    26552655                $link = bp_loggedin_user_domain() ? str_replace( bp_loggedin_user_domain(), bp_displayed_user_domain(), $nav['link'] ) : trailingslashit( bp_displayed_user_domain() . $nav['link'] );
    26562656
    26572657                // Add this menu
  • src/bp-core/bp-core-theme-compatibility.php

    diff --git src/bp-core/bp-core-theme-compatibility.php src/bp-core/bp-core-theme-compatibility.php
    index 4055cca..104fb46 100644
    function bp_theme_compat_reset_post( $args = array() ) { 
    550550        /**
    551551         * Force the header back to 200 status if not a deliberate 404
    552552         *
    553          * @see http://bbpress.trac.wordpress.org/ticket/1973
     553         * @see https://bbpress.trac.wordpress.org/ticket/1973
    554554         */
    555555        if ( ! $wp_query->is_404() ) {
    556556                status_header( 200 );
  • src/bp-core/classes/class-bp-embed.php

    diff --git src/bp-core/classes/class-bp-embed.php src/bp-core/classes/class-bp-embed.php
    index d980f32..4a53a50 100644
    class BP_Embed extends WP_Embed { 
    8585                $attr = wp_parse_args( $attr, wp_embed_defaults() );
    8686
    8787                // kses converts & into &amp; and we need to undo this
    88                 // See http://core.trac.wordpress.org/ticket/11311
     88                // See https://core.trac.wordpress.org/ticket/11311
    8989                $url = str_replace( '&amp;', '&', $url );
    9090
    9191                // Look for known internal handlers
  • src/bp-forums/deprecated/1.6.php

    diff --git src/bp-forums/deprecated/1.6.php src/bp-forums/deprecated/1.6.php
    index 540622d..9591513 100644
    function bp_forums_bbpress_admin() { 
    100100                                        <li><?php _e( 'And more!', 'buddypress' ); ?></p></li>
    101101                                </ul>
    102102
    103                                 <p><?php printf( __( 'If you decide to use bbPress, you will need to deactivate the legacy group forum component.  For more info, <a href="%s">read this codex article</a>.', 'buddypress' ), 'http://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/using-bbpress-2-2-with-buddypress/' ) ?></p>
     103                                <p><?php printf( __( 'If you decide to use bbPress, you will need to deactivate the legacy group forum component.  For more info, <a href="%s">read this codex article</a>.', 'buddypress' ), 'https://codex.buddypress.org/legacy/getting-started/using-bbpress-2-2-with-buddypress/' ) ?></p>
    104104
    105105                                <div>
    106106                                        <a class="button thickbox button-primary" href="<?php echo esc_attr( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> &nbsp;
    function bp_forums_bbpress_install_wizard() { 
    243243                                                <li><?php _e( 'And more!', 'buddypress' ); ?></p></li>
    244244                                        </ul>
    245245
    246                                         <p><?php printf( __( 'If you decide to use bbPress, you will need to deactivate the legacy group forum component.  For more info, <a href="%s">read this codex article</a>.', 'buddypress' ), 'http://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/using-bbpress-2-2-with-buddypress/' ) ?></p>
     246                                        <p><?php printf( __( 'If you decide to use bbPress, you will need to deactivate the legacy group forum component.  For more info, <a href="%s">read this codex article</a>.', 'buddypress' ), 'https://codex.buddypress.org/legacy/getting-started/using-bbpress-2-2-with-buddypress/' ) ?></p>
    247247                                        <div>
    248248                                                <a class="button button-primary <?php if ( ! $bbpress_plugin_is_active ) { echo esc_attr( 'thickbox' ); }?>" href="<?php echo esc_attr( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> &nbsp;
    249249                                        </div>
  • src/bp-groups/bp-groups-admin.php

    diff --git src/bp-groups/bp-groups-admin.php src/bp-groups/bp-groups-admin.php
    index 008218b..e8ae903 100644
    function bp_groups_admin_load() { 
    123123                // Help panel - sidebar links
    124124                get_current_screen()->set_help_sidebar(
    125125                        '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    126                         '<p><a href="http://buddypress.org/support">' . __( 'Support Forums', 'buddypress' ) . '</a></p>'
     126                        '<p><a href="https://buddypress.org/support">' . __( 'Support Forums', 'buddypress' ) . '</a></p>'
    127127                );
    128128
    129129                // Register metaboxes for the edit screen.
    function bp_groups_admin_load() { 
    171171                // Help panel - sidebar links
    172172                get_current_screen()->set_help_sidebar(
    173173                        '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    174                         '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     174                        '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    175175                );
    176176        }
    177177
  • src/bp-groups/classes/class-bp-group-extension.php

    diff --git src/bp-groups/classes/class-bp-group-extension.php src/bp-groups/classes/class-bp-group-extension.php
    index 9f619b2..5f3a019 100644
    class BP_Group_Extension { 
    13191319         * will be matched by a value of identical depth in the other one. The
    13201320         * function is NOT designed for general use, and will probably result
    13211321         * in unexpected results when used with data in the wild. See, eg,
    1322          * http://core.trac.wordpress.org/ticket/19888
     1322         * https://core.trac.wordpress.org/ticket/19888
    13231323         *
    13241324         * @since BuddyPress (1.8.0)
    13251325         *
  • src/bp-loader.php

    diff --git src/bp-loader.php src/bp-loader.php
    index 4b4e1a5..63180e0 100644
     
    1010
    1111/**
    1212 * Plugin Name: BuddyPress
    13  * Plugin URI:  http://buddypress.org
     13 * Plugin URI:  https://buddypress.org/
    1414 * Description: BuddyPress helps you run any kind of social network on your WordPress, with member profiles, activity streams, user groups, messaging, and more.
    1515 * Author:      The BuddyPress Community
    16  * Author URI:  http://buddypress.org
     16 * Author URI:  https://buddypress.org/
    1717 * Version:     2.3-alpha
    1818 * Text Domain: buddypress
    1919 * Domain Path: /bp-languages/
  • src/bp-members/bp-members-admin.php

    diff --git src/bp-members/bp-members-admin.php src/bp-members/bp-members-admin.php
    index cfe5a36..7d0440a 100644
    class BP_Members_Admin { 
    711711                        // Help panel - sidebar links
    712712                        get_current_screen()->set_help_sidebar(
    713713                                '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    714                                 '<p>' . __( '<a href="http://codex.buddypress.org/buddypress-site-administration/managing-user-profiles/">Managing Profiles</a>', 'buddypress' ) . '</p>' .
    715                                 '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     714                                '<p>' . __( '<a href="https://codex.buddypress.org/administrator-guide/extended-profiles/">Managing Profiles</a>', 'buddypress' ) . '</p>' .
     715                                '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    716716                        );
    717717
    718718                        // Register metaboxes for the edit screen.
    class BP_Members_Admin { 
    14291429                        // Help panel - sidebar links
    14301430                        get_current_screen()->set_help_sidebar(
    14311431                                '<p><strong>' . __( 'For more information:', 'buddypress' ) . '</strong></p>' .
    1432                                 '<p>' . __( '<a href="http://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
     1432                                '<p>' . __( '<a href="https://buddypress.org/support/">Support Forums</a>', 'buddypress' ) . '</p>'
    14331433                        );
    14341434                } else {
    14351435                        if ( ! empty( $_REQUEST['signup_ids' ] ) ) {