diff --git a/core/ext/user.ext.php b/core/ext/user.ext.php
index cd957eb9..009821c9 100644
--- a/core/ext/user.ext.php
+++ b/core/ext/user.ext.php
@@ -331,9 +331,12 @@ class UserPage extends Extension {
$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_name = html_escape($duser->name);
+ $images_link = make_link("index", "search=poster%3D$h_name");
+
return "
Join date: $h_join_date ($i_days_old days old)
-
Images uploaded: $i_image_count ($h_image_rate / day)
+
Images uploaded: $i_image_count ($h_image_rate / day)
Comments made: $i_comment_count ($h_comment_rate / day)
";
}