Changeset 8080 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/views/common/metabox-log.php
- Timestamp:
- 01/14/2019 10:16:20 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/views/common/metabox-log.php
r2876 r8080 1 <?php defined( 'WPINC' ) ordie(); ?>1 <?php defined( 'WPINC' ) || die(); ?> 2 2 3 3 <table class="widefat striped"> … … 15 15 16 16 <?php foreach ( $entries as $entry ) : ?> 17 <tr >18 <th>< ?php echo esc_html( date( 'Y-m-d h:ia', $entry['timestamp'] ) ); ?></th>19 <th>< ?php echo esc_html( ucwords( str_replace( '_', ' ', $entry['type'] ) ) ); ?></th>20 <th>< ?php echo esc_html( $entry['user_display_name'] ); ?></th>21 <th><?php echo wp_kses( $entry['message'], wp_kses_allowed_html( 'data') );?></th>17 <tr class="<?php echo esc_attr( str_replace( '_', '-', $entry['type'] ) ); ?>"> 18 <th><p><?php echo esc_html( date( 'Y-m-d h:ia', $entry['timestamp'] ) ); ?></p></th> 19 <th><p><?php echo esc_html( ucwords( str_replace( '_', ' ', $entry['type'] ) ) ); ?></p></th> 20 <th><p><?php echo esc_html( $entry['user_display_name'] ); ?></p></th> 21 <th><?php echo wp_kses( wpautop( $entry['message'] ), wp_kses_allowed_html( 'data' ) ); ?></th> 22 22 </tr> 23 23 <?php endforeach; ?>
Note: See TracChangeset
for help on using the changeset viewer.