We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e240232 commit 3d8e459Copy full SHA for 3d8e459
1 file changed
blocks/block.php
@@ -302,7 +302,6 @@ function tag_block_top_show($options, $dirname = '', $catid = 0)
302
$tag_count_array = array_map('intval', $tag_count_array); // make sure they're all integers
303
$count_max = max($tag_count_array); // get the max value in array
304
$count_max = max(0, $count_max); // make sure it's >= 0
305
- $count_min = 0;
306
$tags_sort = array_column($tags_array, 'term'); // get all the terms
307
$tags_sort = array_map('mb_strtolower', $tags_sort); // convert them all to lowercase
308
0 commit comments