Make WordPress Core

Ticket #8042: 8042.diff.txt

File 8042.diff.txt, 662 bytes (added by regulatethis, 18 years ago)

Move the separator character outside of the action text span

Line 
1Index: wp-admin/includes/template.php
2===================================================================
3--- wp-admin/includes/template.php (revision 9502)
4+++ wp-admin/includes/template.php (working copy)
5@@ -1290,7 +1290,7 @@
6 foreach ( $actions as $action => $link ) {
7 ++$i;
8 ( $i == $action_count ) ? $sep = '' : $sep = ' | ';
9- echo "<span class='$action'>$link$sep</span>";
10+ echo "<span class='$action'>$link</span> $sep";
11 }
12
13 get_inline_data($post);