Skip to:
Content

BuddyPress.org

Ticket #8785: 8785.2.diff

File 8785.2.diff, 3.7 KB (added by viralsampat, 22 months ago)

Today, I checked the BuddyPress org file and found a few other files where I think that we need to make this document the global variable.

  • codex-bbpress-org/footer.php

     
    1111
    1212                                                <?php
    1313
     14                                                /**
     15                                                 * @global $codex_contributors.
     16                                                 */
    1417                                                global $codex_contributors;
    1518
    1619                                                if ( count( $codex_contributors ) ) : ?>
  • codex-bbpress-org/page.php

     
    2020                                <hr class="hidden" />
    2121
    2222<?php
     23        /**
     24         * @global $post Global post object.
     25         * @global $codex_contributors.
     26         */
    2327        global $post;
    2428
    2529        $args         = array( 'order' => 'ASC', );
  • codex-bbpress-org/sidebar.php

     
    1313
    1414                <?php endif;
    1515
     16                /**
     17                 * @global $post Global post object.
     18                 */
    1619                global $post;
    1720
    1821                $show_related = true;
  • codex-buddypress-org/footer.php

     
    1717
    1818                        <?php
    1919
     20                        /**
     21                         * @global $post Global post object.
     22                         * @global $codex_contributors.
     23                         */
    2024                        global $codex_contributors, $post;
    2125
    2226                        if ( count( $codex_contributors ) ) {
  • codex-buddypress-org/front-page.php

     
    8989        </div>
    9090
    9191                <?php
     92                /**
     93                 * @global $post Global post object.
     94                 */
    9295                        global $post;
    9396
    9497                        $args         = array( 'order' => 'ASC', );
  • codex-buddypress-org/page.php

     
    2121<hr class="hidden" />
    2222
    2323<?php
     24/**
     25 * @global $post Global post object.
     26 * @global $codex_contributors.
     27 */
    2428        global $post;
    2529
    2630        $args         = array( 'order' => 'ASC', );
    27         $revisions    = wp_get_post_revisions( get_queried_object_id(), $args );       
     31        $revisions    = wp_get_post_revisions( get_queried_object_id(), $args );
    2832        $post_authors = array( $post->post_author => 1 );
    2933        foreach( (array)$revisions as $revision ) {
    3034                if ( ! $revision->post_author ) {
  • codex-buddypress-org/sidebar.php

     
    7373
    7474
    7575        <?php if ( is_tax() ) {
     76                /**
     77                 * @global $codex_contributors.
     78                 */
    7679                global $codex_contributors;
    7780
    7881                if ( !empty( $codex_contributors ) ) {
  • codex-buddypress-org/widgets/inbox.php

     
    55        }
    66
    77        function widget( $args, $instance ) {
     8                /**
     9                 * @global BuddyPress $bp BuddyPress global settings
     10                 */
    811                global $bp;
    912
    1013            extract( $args );
  • codex-buddypress-org/widgets/login.php

     
    55        }
    66
    77        function widget( $args, $instance ) {
     8                /**
     9                 * @global BuddyPress $bp BuddyPress global settings
     10                 */
    811                global $bp;
    912
    1013            extract( $args );