diff --git .editorconfig .editorconfig
index 7102043..1505052 100644
|
|
|
2 | 2 | # editorconfig.org |
3 | 3 | |
4 | 4 | # WordPress Coding Standards |
5 | | # http://make.wordpress.org/core/handbook/coding-standards/ |
| 5 | # https://make.wordpress.org/core/handbook/coding-standards/ |
6 | 6 | |
7 | 7 | root = true |
8 | 8 | |
diff --git bp-loader.php bp-loader.php
index 3314e27..c44971d 100644
|
|
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * Plugin Name: BuddyPress |
14 | | * Plugin URI: http://buddypress.org |
| 14 | * Plugin URI: https://buddypress.org |
15 | 15 | * Description: BuddyPress helps you run any kind of social network on your WordPress, with member profiles, activity streams, user groups, messaging, and more. |
16 | 16 | * Author: The BuddyPress Community |
17 | | * Author URI: http://buddypress.org |
| 17 | * Author URI: https://buddypress.org |
18 | 18 | * Version: 2.3-alpha |
19 | 19 | * Text Domain: buddypress |
20 | 20 | * Domain Path: /bp-languages/ |
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() { |
242 | 242 | // Help panel - sidebar links |
243 | 243 | get_current_screen()->set_help_sidebar( |
244 | 244 | '<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>' |
247 | 247 | ); |
248 | 248 | |
249 | 249 | // Register metaboxes for the edit screen. |
… |
… |
function bp_activity_admin_load() { |
287 | 287 | // Help panel - sidebar links |
288 | 288 | get_current_screen()->set_help_sidebar( |
289 | 289 | '<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>' |
291 | 291 | ); |
292 | 292 | } |
293 | 293 | |
diff --git src/bp-activity/bp-activity-akismet.php src/bp-activity/bp-activity-akismet.php
index 7c0b59e..7700f07 100644
|
|
class BP_Akismet { |
131 | 131 | * |
132 | 132 | * @since BuddyPress (1.6) |
133 | 133 | * |
134 | | * @see http://plugins.trac.wordpress.org/ticket/1232 |
| 134 | * @see https://plugins.trac.wordpress.org/ticket/1232 |
135 | 135 | */ |
136 | 136 | public function add_activity_stream_nonce() { |
137 | 137 | $form_id = '_bp_as_nonce'; |
… |
… |
class BP_Akismet { |
589 | 589 | * |
590 | 590 | * @since BuddyPress (1.6) |
591 | 591 | * |
592 | | * @see http://buddypress.trac.wordpress.org/ticket/3907 |
| 592 | * @see https://buddypress.trac.wordpress.org/ticket/3907 |
593 | 593 | * @todo Update activity meta to allow >1 record with the same key (iterate through $history). |
594 | 594 | * |
595 | 595 | * @param object $item Activity item. |
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 { |
394 | 394 | <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" /> |
395 | 395 | <description><?php echo $this->description ?></description> |
396 | 396 | <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> |
398 | 398 | <language><?php bloginfo_rss( 'language' ); ?></language> |
399 | 399 | <ttl><?php echo $this->ttl; ?></ttl> |
400 | 400 | <sy:updatePeriod><?php echo $this->update_period; ?></sy:updatePeriod> |
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 ); |
804 | 804 | * WordPress catches add-user-to-blog requests at init:10. In some cases, this |
805 | 805 | * can precede BP's Blogs component. This function bumps the priority of the |
806 | 806 | * 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. |
808 | 808 | * |
809 | 809 | * @since BuddyPress (1.6.0) |
810 | 810 | * @access private |
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' ) { |
354 | 354 | $retired_components = array( |
355 | 355 | 'forums' => array( |
356 | 356 | '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>' ) |
358 | 358 | ), |
359 | 359 | ); |
360 | 360 | |
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 = '' ) { |
461 | 461 | // help panel - sidebar links |
462 | 462 | $screen->set_help_sidebar( |
463 | 463 | '<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>' |
466 | 466 | ); |
467 | 467 | break; |
468 | 468 | |
… |
… |
function bp_core_add_contextual_help( $screen = '' ) { |
479 | 479 | // Help panel - sidebar links |
480 | 480 | $screen->set_help_sidebar( |
481 | 481 | '<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>' |
484 | 484 | ); |
485 | 485 | |
486 | 486 | break; |
… |
… |
function bp_core_add_contextual_help( $screen = '' ) { |
498 | 498 | // Help panel - sidebar links |
499 | 499 | $screen->set_help_sidebar( |
500 | 500 | '<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>' |
503 | 503 | ); |
504 | 504 | |
505 | 505 | break; |
… |
… |
function bp_core_add_contextual_help( $screen = '' ) { |
517 | 517 | // Help panel - sidebar links |
518 | 518 | $screen->set_help_sidebar( |
519 | 519 | '<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>' |
522 | 522 | ); |
523 | 523 | |
524 | 524 | break; |
diff --git src/bp-core/bp-core-admin.php src/bp-core/bp-core-admin.php
index fa28be7..0e92360 100644
|
|
class BP_Admin { |
537 | 537 | </div> |
538 | 538 | <div class="welcome-panel-column welcome-panel-last"> |
539 | 539 | <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’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’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> |
542 | 542 | </div> |
543 | 543 | </div> |
544 | 544 | </div> |
… |
… |
class BP_Admin { |
644 | 644 | <h4 class="wp-people-group"><?php _e( 'Project Leaders', 'buddypress' ); ?></h4> |
645 | 645 | <ul class="wp-people-group " id="wp-people-group-project-leaders"> |
646 | 646 | <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> |
649 | 649 | <span class="title"><?php _e( 'Project Lead', 'buddypress' ); ?></span> |
650 | 650 | </li> |
651 | 651 | <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> |
654 | 654 | <span class="title"><?php _e( 'Lead Developer', 'buddypress' ); ?></span> |
655 | 655 | </li> |
656 | 656 | <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> |
659 | 659 | <span class="title"><?php _e( 'Lead Developer', 'buddypress' ); ?></span> |
660 | 660 | </li> |
661 | 661 | </ul> |
… |
… |
class BP_Admin { |
663 | 663 | <h4 class="wp-people-group"><?php _e( 'Core Team', 'buddypress' ); ?></h4> |
664 | 664 | <ul class="wp-people-group " id="wp-people-group-core-team"> |
665 | 665 | <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> |
668 | 668 | <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> |
669 | 669 | </li> |
670 | 670 | <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> |
673 | 673 | <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> |
674 | 674 | </li> |
675 | 675 | <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> |
678 | 678 | <span class="title"><?php _e( 'Navigator', 'buddypress' ); ?></span> |
679 | 679 | </li> |
680 | 680 | <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> |
683 | 683 | <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> |
684 | 684 | </li> |
685 | 685 | <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> |
688 | 688 | <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> |
689 | 689 | </li> |
690 | 690 | </ul> |
… |
… |
class BP_Admin { |
692 | 692 | <h4 class="wp-people-group"><?php _e( 'Recent Rockstars', 'buddypress' ); ?></h4> |
693 | 693 | <ul class="wp-people-group " id="wp-people-group-rockstars"> |
694 | 694 | <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> |
697 | 697 | </li> |
698 | 698 | <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> |
701 | 701 | </li> |
702 | 702 | <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> |
705 | 705 | </li> |
706 | 706 | <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> |
709 | 709 | </li> |
710 | 710 | <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> |
713 | 713 | </li> |
714 | 714 | </ul> |
715 | 715 | |
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' ); |
759 | 759 | * |
760 | 760 | * @since BuddyPress (1.6.1) |
761 | 761 | * |
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 |
764 | 764 | */ |
765 | 765 | function _bp_rehook_maybe_redirect_404() { |
766 | 766 | if ( defined( 'NOBLOGREDIRECT' ) ) { |
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() { |
831 | 831 | * |
832 | 832 | * @since BuddyPress (1.7.0) |
833 | 833 | * |
834 | | * @see http://buddypress.trac.wordpress.org/ticket/4401 |
| 834 | * @see https://buddypress.trac.wordpress.org/ticket/4401 |
835 | 835 | * |
836 | 836 | * @param array $args { |
837 | 837 | * Array of optional parameters. |
… |
… |
function bp_get_nav_menu_items() { |
2651 | 2651 | continue; |
2652 | 2652 | } |
2653 | 2653 | |
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 |
2655 | 2655 | $link = bp_loggedin_user_domain() ? str_replace( bp_loggedin_user_domain(), bp_displayed_user_domain(), $nav['link'] ) : trailingslashit( bp_displayed_user_domain() . $nav['link'] ); |
2656 | 2656 | |
2657 | 2657 | // Add this menu |
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() ) { |
550 | 550 | /** |
551 | 551 | * Force the header back to 200 status if not a deliberate 404 |
552 | 552 | * |
553 | | * @see http://bbpress.trac.wordpress.org/ticket/1973 |
| 553 | * @see https://bbpress.trac.wordpress.org/ticket/1973 |
554 | 554 | */ |
555 | 555 | if ( ! $wp_query->is_404() ) { |
556 | 556 | status_header( 200 ); |
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 { |
85 | 85 | $attr = wp_parse_args( $attr, wp_embed_defaults() ); |
86 | 86 | |
87 | 87 | // kses converts & into & and we need to undo this |
88 | | // See http://core.trac.wordpress.org/ticket/11311 |
| 88 | // See https://core.trac.wordpress.org/ticket/11311 |
89 | 89 | $url = str_replace( '&', '&', $url ); |
90 | 90 | |
91 | 91 | // Look for known internal handlers |
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() { |
100 | 100 | <li><?php _e( 'And more!', 'buddypress' ); ?></p></li> |
101 | 101 | </ul> |
102 | 102 | |
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> |
104 | 104 | |
105 | 105 | <div> |
106 | 106 | <a class="button thickbox button-primary" href="<?php echo esc_attr( $button_url ) ?>"><?php echo esc_html( $button_text ) ?></a> |
… |
… |
function bp_forums_bbpress_install_wizard() { |
243 | 243 | <li><?php _e( 'And more!', 'buddypress' ); ?></p></li> |
244 | 244 | </ul> |
245 | 245 | |
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> |
247 | 247 | <div> |
248 | 248 | <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> |
249 | 249 | </div> |
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() { |
123 | 123 | // Help panel - sidebar links |
124 | 124 | get_current_screen()->set_help_sidebar( |
125 | 125 | '<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>' |
127 | 127 | ); |
128 | 128 | |
129 | 129 | // Register metaboxes for the edit screen. |
… |
… |
function bp_groups_admin_load() { |
171 | 171 | // Help panel - sidebar links |
172 | 172 | get_current_screen()->set_help_sidebar( |
173 | 173 | '<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>' |
175 | 175 | ); |
176 | 176 | } |
177 | 177 | |
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 { |
1319 | 1319 | * will be matched by a value of identical depth in the other one. The |
1320 | 1320 | * function is NOT designed for general use, and will probably result |
1321 | 1321 | * 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 |
1323 | 1323 | * |
1324 | 1324 | * @since BuddyPress (1.8.0) |
1325 | 1325 | * |
diff --git src/bp-loader.php src/bp-loader.php
index 4b4e1a5..63180e0 100644
|
|
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Plugin Name: BuddyPress |
13 | | * Plugin URI: http://buddypress.org |
| 13 | * Plugin URI: https://buddypress.org/ |
14 | 14 | * Description: BuddyPress helps you run any kind of social network on your WordPress, with member profiles, activity streams, user groups, messaging, and more. |
15 | 15 | * Author: The BuddyPress Community |
16 | | * Author URI: http://buddypress.org |
| 16 | * Author URI: https://buddypress.org/ |
17 | 17 | * Version: 2.3-alpha |
18 | 18 | * Text Domain: buddypress |
19 | 19 | * Domain Path: /bp-languages/ |
diff --git src/bp-members/bp-members-admin.php src/bp-members/bp-members-admin.php
index cfe5a36..7d0440a 100644
|
|
class BP_Members_Admin { |
711 | 711 | // Help panel - sidebar links |
712 | 712 | get_current_screen()->set_help_sidebar( |
713 | 713 | '<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>' |
716 | 716 | ); |
717 | 717 | |
718 | 718 | // Register metaboxes for the edit screen. |
… |
… |
class BP_Members_Admin { |
1429 | 1429 | // Help panel - sidebar links |
1430 | 1430 | get_current_screen()->set_help_sidebar( |
1431 | 1431 | '<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>' |
1433 | 1433 | ); |
1434 | 1434 | } else { |
1435 | 1435 | if ( ! empty( $_REQUEST['signup_ids' ] ) ) { |