aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-03-01 23:50:31 -0800
committerfriendica <info@friendica.com>2015-03-01 23:50:31 -0800
commit7d0783c4dd08b63033d403d462ee2f30ef7100a6 (patch)
tree34b170ef7a63ee17045b0495d9a0de8537727da7 /include/taxonomy.php
parent41415d934f1b5dd32112de7f3bd19aaad0b412cf (diff)
downloadvolse-hubzilla-7d0783c4dd08b63033d403d462ee2f30ef7100a6.tar.gz
volse-hubzilla-7d0783c4dd08b63033d403d462ee2f30ef7100a6.tar.bz2
volse-hubzilla-7d0783c4dd08b63033d403d462ee2f30ef7100a6.zip
increase the dynamic range of the tag clouds slightly.
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r--include/taxonomy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php
index d36c05db2..3d1ac7058 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -152,7 +152,7 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $
$range = max(.01, $max - $min) * 1.0001;
for($x = 0; $x < count($tags); $x ++) {
- $tags[$x][2] = 1 + floor(5 * ($tags[$x][1] - $min) / $range);
+ $tags[$x][2] = 1 + floor(7 * ($tags[$x][1] - $min) / $range);
}
return $tags;