Changeset 451254
- Timestamp:
- 10/15/2011 12:43:52 AM (14 years ago)
- Location:
- customcomment
- Files:
-
- 3 edited
- 1 copied
-
tags/2.1.6 (copied) (copied from customcomment/tags/2.1.5)
-
tags/2.1.6/CustomComment.php (modified) (2 diffs)
-
tags/2.1.6/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
customcomment/tags/2.1.6/CustomComment.php
r365571 r451254 29 29 add_action('wp_ajax_my_action', 'CComent_ajax_respond'); 30 30 add_action('comment_form_after_fields', 'CComment_form'); 31 add_action('comment_form_logged_in_after', 'CComment_form'); 31 32 add_action('comment_post', 'CComment_comment_post'); 32 33 add_action('admin_menu', 'CComment_modify_admin_menu'); 33 34 add_action('delete_comment', 'CComment_delete_comment'); 34 35 add_filter('comment_author', 'CComment_link'); 35 add_action('check_comment_flood', 'check_required_CComment_fields');36 //add_action('check_comment_flood', 'check_required_CComment_fields'); 36 37 register_activation_hook (__FILE__, 'set_CComment_options'); 37 38 … … 139 140 //Save the custom fields for the comment 140 141 function CComment_comment_post($comment_id) { 142 //Check required files 143 check_required_CComment_fields(); 144 141 145 $custom_fields = array_filter(explode(",", get_option('CComment_fields'))); 142 146 foreach ($custom_fields as $custom_field) -
customcomment/tags/2.1.6/readme.txt
r365561 r451254 4 4 Tags: comment customization,comment,custom comment,comment field,customize comment,extra fields,extra field 5 5 Requires at least: 2.7 6 Tested up to: 3. 17 Stable tag: 2.1. 56 Tested up to: 3.2 7 Stable tag: 2.1.6 8 8 9 9 == Description == … … 64 64 please update to this version since in 2.1.2 you can't see the user data 65 65 66 = 2.1.6 = 67 now the extra fields that you create can be seen by the logged in users 68 66 69 == Development Blog == 67 70 -
customcomment/trunk/readme.txt
r365561 r451254 5 5 Requires at least: 2.7 6 6 Tested up to: 3.1 7 Stable tag: 2.1. 57 Stable tag: 2.1.6 8 8 9 9 == Description ==
Note: See TracChangeset
for help on using the changeset viewer.