Skip to content

Commit

Permalink
Merge pull request #6 from pixelgrade/dev
Browse files Browse the repository at this point in the history
Fixed uncountable warning, see #5
  • Loading branch information
BurloiuCosmin authored Mar 28, 2019
2 parents d782163 + 66b57fd commit e2c95af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion category-icon.php
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ function allow_svg_in_mime_types($mimes) {

public function on_shutdown() {
$final = '';
$ob_levels = count(ob_get_level());
$ob_levels = ob_get_level();
for ($i = 0; $i < $ob_levels; $i++) {
$final .= ob_get_clean();
}
Expand Down

0 comments on commit e2c95af

Please sign in to comment.