Changeset 27914
- Timestamp:
- 04/02/2014 09:49:38 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r27871 r27914 993 993 } 994 994 $output .= "</{$itemtag}>"; 995 if ( $columns > 0 && ++$i % $columns == 0 )995 if ( ! $html5 && $columns > 0 && ++$i % $columns == 0 ) { 996 996 $output .= '<br style="clear: both" />'; 997 } 998 999 if ( $columns > 0 && $i % $columns !== 0 ) { 997 } 998 } 999 1000 if ( ! $html5 && $columns > 0 && $i % $columns !== 0 ) { 1000 1001 $output .= " 1001 1002 <br style='clear: both' />";
Note: See TracChangeset
for help on using the changeset viewer.