Changeset 54071 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 09/05/2022 05:17:21 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r53877 r54071 2169 2169 ++$i; 2170 2170 2171 $sep = ( $i < $state_count ) ? ', ' : '';2172 2173 $post_states_string .= "<span class='post-state'> $state$sep</span>";2171 $separator = ( $i < $state_count ) ? ', ' : ''; 2172 2173 $post_states_string .= "<span class='post-state'>{$state}{$separator}</span>"; 2174 2174 } 2175 2175 } … … 2283 2283 ++$i; 2284 2284 2285 $sep = ( $i < $state_count ) ? ', ' : '';2286 2287 $media_states_string .= "<span class='post-state'> $state$sep</span>";2285 $separator = ( $i < $state_count ) ? ', ' : ''; 2286 2287 $media_states_string .= "<span class='post-state'>{$state}{$separator}</span>"; 2288 2288 } 2289 2289 }
Note: See TracChangeset
for help on using the changeset viewer.