summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/default/sidebar.block.recent.php
diff options
context:
space:
mode:
authorGravatar querwurzelt2019-01-20 22:19:33 +0100
committerGravatar querwurzelt2019-01-21 22:15:21 +0100
commitea04385bc16de6b7b65aab75c5c33cfe2d71ea84 (patch)
treece675e51c2604149cb8a949b7ef3d92e98bc2f52 /data/templates/default/sidebar.block.recent.php
parente636523aac630d73cda415cf551d0be570ce10d6 (diff)
downloadscuttle-ea04385bc16de6b7b65aab75c5c33cfe2d71ea84.tar.gz
scuttle-ea04385bc16de6b7b65aab75c5c33cfe2d71ea84.zip
PHP 7.3 compat, bug fixes
Diffstat (limited to 'data/templates/default/sidebar.block.recent.php')
-rw-r--r--data/templates/default/sidebar.block.recent.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/default/sidebar.block.recent.php b/data/templates/default/sidebar.block.recent.php
index 80ae71c..1deae27 100644
--- a/data/templates/default/sidebar.block.recent.php
+++ b/data/templates/default/sidebar.block.recent.php
@@ -26,7 +26,7 @@ if ($recentTags && count($recentTags) > 0) {
}
foreach ($recentTags as $row) {
- $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']);
+ $entries = T_ngettext('bookmark', 'bookmarks', (int)$row['bCount']);
$contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> ';
}
echo $contents ."</p>\n";