Skip to content

Commit c4998d3

Browse files
committed
Unqualified function/constant reference
1 parent 6e2b6f2 commit c4998d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

blocks/block.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,11 @@ function tag_block_top_show($options, $dirname = '', $catid = 0)
299299
$count_max = 0;
300300
$count_min = 0;
301301
$tag_count_array = array_column($tags_array, 'count'); // get the count values
302-
$tag_count_array = array_map('intval', $tag_count_array); // make sure they're all integers
302+
$tag_count_array = array_map('\intval', $tag_count_array); // make sure they're all integers
303303
$count_max = max($tag_count_array); // get the max value in array
304304
$count_max = max(0, $count_max); // make sure it's >= 0
305305
$tags_sort = array_column($tags_array, 'term'); // get all the terms
306-
$tags_sort = array_map('mb_strtolower', $tags_sort); // convert them all to lowercase
306+
$tags_sort = array_map('\mb_strtolower', $tags_sort); // convert them all to lowercase
307307

308308
$tags_sort = [];
309309

0 commit comments

Comments
 (0)