diff options
author | pjmattal <pjmattal> | 2005-08-02 05:05:19 +0000 |
---|---|---|
committer | pjmattal <pjmattal> | 2005-08-02 05:05:19 +0000 |
commit | 702abe64bc84c9d9823a8d064837701aeb9fa068 (patch) | |
tree | 26a4c79bc970bf29d69210fed6f614bfde782258 | |
parent | a4d583179c29cd03389bd6e3e4f89fae375bf5d4 (diff) | |
download | aurweb-702abe64bc84c9d9823a8d064837701aeb9fa068.tar.xz |
fixed bug #2994 (extraneous comment delete buttons mapping to wrong comments)
-rw-r--r-- | web/lib/pkgfuncs.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index e355c47..438039a 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -481,8 +481,9 @@ function package_details($id=0, $SID="") { $durl.= "&comment_id=".$carr["ID"]."&ID=".$row["ID"]; $durl.= "'><img src='/images/x.png' border='0'"; $durl.= " alt=\"".__("Delete comment")."\"></a>"; + + print $durl . " "; } - print $durl . " "; print __("Comment by: %h%s%h on %h%s%h", array("<b>",$carr["UserName"],"</b>", "<i>",date("Ymd [H:i:s]",$carr["CommentTS"]),"</i>")); |