diff options
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 0bda87a400..5c2e7e58a3 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -990,7 +990,7 @@ for($i = 0; $i < $total_posts; $i++) { $temp_url = append_sid("posting.$phpEx?mode=delete&" . POST_POST_URL . "=" . $postrow[$i]['post_id']); $delpost_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_delpost'] . '" alt="' . $lang['Delete_post'] . '" title="' . $lang['Delete_post'] . '" border="0" /></a>'; - $delpost_img = '<a href="' . $temp_url . '">' . $lang['Delete_post'] . '</a>'; + $delpost = '<a href="' . $temp_url . '">' . $lang['Delete_post'] . '</a>'; } else { |