Changeset 29775
- Timestamp:
- 09/28/2014 08:25:33 PM (7 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/list-tables.css
r29702 r29775 1409 1409 } 1410 1410 1411 .plugin-card .compatibility-untested strong {1412 font-weight: normal;1413 }1414 1415 1411 .plugin-icon { 1416 1412 position: absolute; -
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r29679 r29775 468 468 <?php 469 469 if ( ! empty( $plugin['tested'] ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $plugin['tested'] ) ), $plugin['tested'], '>' ) ) { 470 echo '<span class="compatibility-untested">' . __( ' <strong>Untested</strong>with your version of WordPress' ) . '</span>';470 echo '<span class="compatibility-untested">' . __( 'Untested with your version of WordPress' ) . '</span>'; 471 471 } elseif ( ! empty( $plugin['requires'] ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $plugin['requires'] ) ), $plugin['requires'], '<' ) ) { 472 472 echo '<span class="compatibility-incompatible">' . __( '<strong>Incompatible</strong> with your version of WordPress' ) . '</span>';
Note: See TracChangeset
for help on using the changeset viewer.