equal
deleted
inserted
replaced
152 |
152 |
153 // Use a natural sort of numbers. |
153 // Use a natural sort of numbers. |
154 natsort( $this->site_icon_sizes ); |
154 natsort( $this->site_icon_sizes ); |
155 $this->site_icon_sizes = array_reverse( $this->site_icon_sizes ); |
155 $this->site_icon_sizes = array_reverse( $this->site_icon_sizes ); |
156 |
156 |
157 // ensure that we only resize the image into |
157 // Ensure that we only resize the image into sizes that allow cropping. |
158 foreach ( $sizes as $name => $size_array ) { |
158 foreach ( $sizes as $name => $size_array ) { |
159 if ( isset( $size_array['crop'] ) ) { |
159 if ( isset( $size_array['crop'] ) ) { |
160 $only_crop_sizes[ $name ] = $size_array; |
160 $only_crop_sizes[ $name ] = $size_array; |
161 } |
161 } |
162 } |
162 } |