Making WordPress.org

Changeset 2900


Ignore:
Timestamp:
04/05/2016 06:42:47 PM (9 years ago)
Author:
iandunn
Message:

WordCamp Post Type: Re-align closing PHP tags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/views/applications/tracker/shortcode-application-tracker.php

    r2899 r2900  
    2020        <?php foreach ( $posts as $post ) : ?>
    2121            <tr>
    22                 <td class="city"       ><?php echo esc_html( $post->post_title );                                  ?></td>
    23                 <td class="applicant"  ><?php echo esc_html( get_post_meta( $post->ID, 'Organizer Name', true ) ); ?></td>
    24                 <td class="milestone"  ><?php echo esc_html( $milestones[ $post->post_status ] );                  ?></td>
    25                 <td class="status"     ><?php echo esc_html( $statuses[ $post->post_status ] );                    ?></td>
     22                <td class="city"       ><?php echo esc_html( $post->post_title );                                                ?></td>
     23                <td class="applicant"  ><?php echo esc_html( get_post_meta( $post->ID, 'Organizer Name', true ) );               ?></td>
     24                <td class="milestone"  ><?php echo esc_html( $milestones[ $post->post_status ] );                                ?></td>
     25                <td class="status"     ><?php echo esc_html( $statuses[ $post->post_status ] );                                  ?></td>
    2626                <td class="last-update"><?php echo esc_html( human_time_diff( time(), $post->last_update_timestamp ) . ' ago' ); ?></td>
    27                 <!-- todo realign -->
    2827            </tr>
    2928        <?php endforeach; ?>
Note: See TracChangeset for help on using the changeset viewer.