aboutsummaryrefslogtreecommitdiffstats
path: root/admin/comments.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-06-07 18:50:25 +0000
committerrub <rub@piwigo.org>2007-06-07 18:50:25 +0000
commit3fbc92f61e1cf362982d3e9697bf5261868cbb2c (patch)
tree11f9f0500c15456b16fa1b0aeca82994a4c05b5e /admin/comments.php
parent182fb00f8f7873d220ab8502a31357f9245fbf8f (diff)
Resolved issue 0000702: Code Injection with picture comment
git-svn-id: http://piwigo.org/svn/trunk@2030 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/comments.php')
-rw-r--r--admin/comments.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/comments.php b/admin/comments.php
index 6bba32a96..bae32dcb3 100644
--- a/admin/comments.php
+++ b/admin/comments.php
@@ -162,7 +162,7 @@ while ($row = mysql_fetch_assoc($result))
'&amp;image_id='.$row['image_id'],
'ID' => $row['id'],
'TN_SRC' => $thumb,
- 'AUTHOR' => $row['author'],
+ 'AUTHOR' => trigger_event('render_comment_author', $row['author']),
'DATE' => format_date($row['date'],'mysql_datetime',true),
'CONTENT' => trigger_event('render_comment_content',$row['content'])
)