diff --git a/ext/user/theme.php b/ext/user/theme.php
index e5024ab4..ca1eb3e3 100644
--- a/ext/user/theme.php
+++ b/ext/user/theme.php
@@ -126,16 +126,16 @@ class UserPageTheme extends Themelet {
$i_image_count = Image::count_images($config, $database, array("user_id={$duser->id}"));
$i_comment_count = Comment::count_comments_by_user($duser);
- $h_image_rate = sprintf("%3.1f", ($i_image_count / $i_days_old2));
- $h_comment_rate = sprintf("%3.1f", ($i_comment_count / $i_days_old2));
+ #$h_image_rate = sprintf("%3.1f", ($i_image_count / $i_days_old2));
+ #$h_comment_rate = sprintf("%3.1f", ($i_comment_count / $i_days_old2));
$u_id = url_escape($duser->id);
$images_link = make_link("post/list/user_id=$u_id/1");
return "
Join date: $h_join_date
-
Images uploaded: $i_image_count ($h_image_rate / day)
-
Comments made: $i_comment_count ($h_comment_rate / day)
+
Images uploaded: $i_image_count
+
Comments made: $i_comment_count
";
}