Ticket #26571: dashboard.diff
| File dashboard.diff, 486 bytes (added by , 12 years ago) |
|---|
-
dashboard.php
222 222 */ 223 223 $elements = apply_filters( 'dashboard_glance_items', array() ); 224 224 if ( $elements ) { 225 echo '<li>' . implode( "</li>\n<li>", $elements ) . "</li>\n"; 225 foreach ( (array) $elements as $class => $element ) { 226 printf( "<li></li>\n<li class='%s-count'>%s</li>\n", $class, $element ); 227 } 226 228 } 227 229 228 230 ?>