diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-10 11:11:24 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-10 11:11:24 +0000 |
commit | 74766e5b823faca35fa57467bd8e19d048c1a8fb (patch) | |
tree | 0a43dc11e9866e7b13f4f7b068713fb24ff78db2 /modules/comment/views | |
parent | cc6d57e8c9e81665a548f911119f52811dcd7339 (diff) |
Create a 'recently deleted' queue
Diffstat (limited to 'modules/comment/views')
-rw-r--r-- | modules/comment/views/admin_comments.html.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/comment/views/admin_comments.html.php b/modules/comment/views/admin_comments.html.php index ae3051ad..4091270b 100644 --- a/modules/comment/views/admin_comments.html.php +++ b/modules/comment/views/admin_comments.html.php @@ -155,13 +155,15 @@ function update_menu() { <?= t("Reply") ?> </a> </li> + <li> <a href="javascript:Edit(<?=$comment->id?>)"> <?= t("Edit") ?> </a> </li> + <li> - <a href="javascript:del(<?=$comment->id?>)"> + <a href="javascript:set_state('deleted',<?=$comment->id?>)"> <?= t("Delete") ?> </a> </li> |