diff options
Diffstat (limited to '')
-rw-r--r-- | include/functions_notification.inc.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/functions_notification.inc.php b/include/functions_notification.inc.php index a69bd4211..c7f3fdc49 100644 --- a/include/functions_notification.inc.php +++ b/include/functions_notification.inc.php @@ -534,7 +534,9 @@ function get_html_description_recent_post_date($date_detail) foreach($date_detail['elements'] as $element) { $tn_src = get_thumbnail_url($element); - $description .= '<img src="'.$tn_src.'"/>'; + $description .= '<a href="'. + make_picture_url(array('image_id' => $element['id'])) + .'"><img src="'.$tn_src.'"/></a>'; } $description .= '...<br/>'; |