Ticket #8785: 8785.2.diff
File 8785.2.diff, 3.7 KB (added by , 22 months ago) |
---|
-
codex-bbpress-org/footer.php
11 11 12 12 <?php 13 13 14 /** 15 * @global $codex_contributors. 16 */ 14 17 global $codex_contributors; 15 18 16 19 if ( count( $codex_contributors ) ) : ?> -
codex-bbpress-org/page.php
20 20 <hr class="hidden" /> 21 21 22 22 <?php 23 /** 24 * @global $post Global post object. 25 * @global $codex_contributors. 26 */ 23 27 global $post; 24 28 25 29 $args = array( 'order' => 'ASC', ); -
codex-bbpress-org/sidebar.php
13 13 14 14 <?php endif; 15 15 16 /** 17 * @global $post Global post object. 18 */ 16 19 global $post; 17 20 18 21 $show_related = true; -
codex-buddypress-org/footer.php
17 17 18 18 <?php 19 19 20 /** 21 * @global $post Global post object. 22 * @global $codex_contributors. 23 */ 20 24 global $codex_contributors, $post; 21 25 22 26 if ( count( $codex_contributors ) ) { -
codex-buddypress-org/front-page.php
89 89 </div> 90 90 91 91 <?php 92 /** 93 * @global $post Global post object. 94 */ 92 95 global $post; 93 96 94 97 $args = array( 'order' => 'ASC', ); -
codex-buddypress-org/page.php
21 21 <hr class="hidden" /> 22 22 23 23 <?php 24 /** 25 * @global $post Global post object. 26 * @global $codex_contributors. 27 */ 24 28 global $post; 25 29 26 30 $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 ); 28 32 $post_authors = array( $post->post_author => 1 ); 29 33 foreach( (array)$revisions as $revision ) { 30 34 if ( ! $revision->post_author ) { -
codex-buddypress-org/sidebar.php
73 73 74 74 75 75 <?php if ( is_tax() ) { 76 /** 77 * @global $codex_contributors. 78 */ 76 79 global $codex_contributors; 77 80 78 81 if ( !empty( $codex_contributors ) ) { -
codex-buddypress-org/widgets/inbox.php
5 5 } 6 6 7 7 function widget( $args, $instance ) { 8 /** 9 * @global BuddyPress $bp BuddyPress global settings 10 */ 8 11 global $bp; 9 12 10 13 extract( $args ); -
codex-buddypress-org/widgets/login.php
5 5 } 6 6 7 7 function widget( $args, $instance ) { 8 /** 9 * @global BuddyPress $bp BuddyPress global settings 10 */ 8 11 global $bp; 9 12 10 13 extract( $args );