Changeset 1281549
- Timestamp:
- 11/07/2015 09:40:20 AM (10 years ago)
- Location:
- simple-antispam/trunk
- Files:
-
- 3 edited
-
js/bait.js (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
simple-anti-spam.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-antispam/trunk/js/bait.js
r1280765 r1281549 15 15 setTimeout(function(){ 16 16 jQuery('form#commentform').append('<input type="hidden" name="simple_as" id="simple_as" value="bait" />'); 17 //jQuery('form#commentform').append('<input style="display:none" name="simple_as" id="simple_as" value="bait" />'); // Ç¿çªÇ¢©ÍvªµÄmF·×µ 18 jQuery('form#commentform').append('<input type="input" style="display:none" name="simple_as2" id="simple_as2" value="" />'); 17 19 }, 5000); 18 20 }); -
simple-antispam/trunk/readme.txt
r1280765 r1281549 57 57 == Changelog == 58 58 59 1.1 60 フィルター等、細かな修正。 61 59 62 1.0 60 63 初めのバージョン。 -
simple-antispam/trunk/simple-anti-spam.php
r1280765 r1281549 175 175 wp_enqueue_script( 'serial-js' ); 176 176 wp_enqueue_script( 'export-js' ); 177 wp_enqueue_script( 'export-js' );178 177 wp_enqueue_style( 'export-css' ); 179 178 } … … 248 247 * といったbot対策 249 248 */ 250 if ( ! empty( $setting["js_filter"] ) && isset( $_POST['simple_as'] ) && $_POST['simple_as'] != 'bait' ) { 249 if ( ! empty( $setting["js_filter"] ) && 250 isset( $_POST['simple_as'] ) && 251 $_POST['simple_as'] != 'bait' || 252 $_POST['simple_as2'] != '' 253 ) { 251 254 252 255 $log = get_option( 'simple_antispam_log' );
Note: See TracChangeset
for help on using the changeset viewer.