Changeset 29348
- Timestamp:
- 08/01/2014 08:43:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r29227 r29348 353 353 $title = wp_kses( $plugin['name'], $plugins_allowedtags ); 354 354 355 // Remove any HTML from the description.355 // Remove any HTML from the description. 356 356 $description = strip_tags( $plugin['short_description'] ); 357 357 $version = wp_kses( $plugin['version'], $plugins_allowedtags ); … … 415 415 <?php 416 416 if ( ! empty( $action_links ) ) { 417 echo '<ul class="plugin-action-buttons"><li>' . implode( '</li><li>', $action_links ) . '</li> ';417 echo '<ul class="plugin-action-buttons"><li>' . implode( '</li><li>', $action_links ) . '</li></ul>'; 418 418 } 419 419 ?> … … 453 453 <?php 454 454 } 455 456 // Close off the group divs of the last one 457 if ( ! empty( $group ) ) { 458 echo '</div></div>'; 459 } 455 460 } 456 461 }
Note: See TracChangeset
for help on using the changeset viewer.