diff options
author | mistic100 <mistic@piwigo.org> | 2011-04-06 08:55:40 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-04-06 08:55:40 +0000 |
commit | a8b750b8551697dd6f6927dfc2ae9f297d7ed216 (patch) | |
tree | e650685e3c8881cc22612446564ec807bbcf9fc0 /admin | |
parent | 5f7328ed5cf6a628e26f62d460980c5d99b83101 (diff) |
bug:2152 Comments revalidation when modified
git-svn-id: http://piwigo.org/svn/trunk@10097 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/configuration.php | 1 | ||||
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index c84962e42..2762fb62a 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -63,6 +63,7 @@ $history_checkboxes = array( $comments_checkboxes = array( 'comments_forall', 'comments_validation', + 'comments_update_validation', 'email_admin_on_comment', 'email_admin_on_comment_validation', 'user_can_delete_comment', diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index e241f220f..a8c2a943f 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -143,6 +143,13 @@ <input type="checkbox" name="comments_validation" {if ($comments.comments_validation)}checked="checked"{/if}> </label> </li> + + <li> + <label> + <span class="property">{'Update Validation'|@translate}</span> + <input type="checkbox" name="comments_update_validation" {if ($comments.comments_update_validation)}checked="checked"{/if}> + </label> + </li> <li> <label> |