Changeset 5841 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
- Timestamp:
- 08/25/2017 08:17:03 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
r5566 r5841 50 50 <li><?php printf( __( 'Active installs: %s', 'wporg-plugins' ), '<strong>' . Template::active_installs( false ) . '</strong>' ); ?></li> 51 51 52 52 <?php if ( $requires = (string) get_post_meta( $post->ID, 'requires', true ) ) : ?> 53 53 <li><?php 54 54 _e( 'Requires WordPress Version:', 'wporg-plugins' ); 55 55 echo '<strong>' . esc_html( $requires ) . '</strong>'; 56 56 ?></li> 57 <?php endif; ?> 58 59 57 <?php endif; ?> 60 58 61 59 <?php if ( $tested_up_to = (string) get_post_meta( $post->ID, 'tested', true ) ) : ?> 62 60 <li><?php printf( __( 'Tested up to: %s', 'wporg-plugins' ), '<strong>' . $tested_up_to . '</strong>' ); ?></li> 61 <?php endif; ?> 62 63 <?php if ( $requires_php = (string) get_post_meta( $post->ID, 'requires_php', true ) ) : ?> 64 <li><?php 65 _e( 'Requires PHP Version:', 'wporg-plugins' ); 66 echo '<strong>' . esc_html( $requires_php ) . '</strong>'; 67 ?></li> 63 68 <?php endif; ?> 64 69
Note: See TracChangeset
for help on using the changeset viewer.