Changeset 449925
- Timestamp:
- 10/11/2011 04:36:16 PM (14 years ago)
- Location:
- solvemedia/trunk
- Files:
-
- 3 edited
-
puzzle_reload.js (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
solvemedia.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
solvemedia/trunk/puzzle_reload.js
r291678 r449925 1 1 // Copyright (c) 2010 SolveMedia Inc. 2 // $Id: puzzle_reload.js,v 1.5 2011/10/10 13:31:55 ilia Exp $ 2 3 3 jQuery(document).ajaxSuccess(function() 4 // The puzzle needs to be reset after a CF7 form submission 5 // in case the user needs to submit the form again 6 jQuery(document).ajaxSuccess(function(evt, xhr, options) 7 { 8 try 4 9 { 5 try 10 // Check that the AJAX call involves Contact-Form-7 11 // submission and a Solve Media puzzle 12 if (options.data.match("_wpcf7_is_ajax_call=1") && 13 options.data.match("adcopy_response=")) 6 14 { 7 15 ACPuzzle.reload(); 8 16 } 9 catch(e) {} 10 }); 17 } 18 catch(e) {} 19 }); 11 20 12 13 -
solvemedia/trunk/readme.txt
r378793 r449925 3 3 Tags: akismet, captcha, registration, contact form 7, advertising, anti-spam, plugin, solve media, spam, captcha advertising, security, monetize, type-in, security captcha, iPhone, iPad, Blackberry, Android, Windows Phone 7 4 4 Requires at least: 2.8.4 5 Tested up to: 3. 0.46 Stable tag: 1.0. 55 Tested up to: 3.2.1 6 Stable tag: 1.0.6 7 7 8 8 Secure & Monetize your site with Solve Media's CAPTCHA replacement. … … 43 43 == Changelog == 44 44 45 = 1.0.6 = 46 * Bug fix - fixed a bug that caused the puzzle to reload if the Contact-Form-7 option was enabled and other plugins that use AJAX were present 47 45 48 = 1.0.5 = 46 49 * Bug fix - fixed a bug that resulted from a style change in the default WordPress theme in version 3.0.1 … … 50 53 51 54 == Upgrade Notice == 55 56 = 1.0.6 = 57 This version fixes an issue that would cause the puzzle to reload when other plugins made AJAX calls. 52 58 53 59 = 1.0.5 = -
solvemedia/trunk/solvemedia.php
r337468 r449925 1 1 <?php 2 2 /* 3 Plugin Name: S OLVEMEDIA3 Plugin Name: Solve Media 4 4 Plugin URI: http://www.solvemedia.com/ 5 5 Description: Integrates Solve Media's anti-spam solutions with wordpress 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: Ilia Fishbein 8 8 Email: support@solvemedia.com … … 12 12 Copyright (c) 2010 by Solve Media 13 13 14 $Id: solvemedia.php,v 1. 3 2010/09/24 19:28:13ilia Exp $14 $Id: solvemedia.php,v 1.6 2011/10/07 16:06:16 ilia Exp $ 15 15 */ 16 16
Note: See TracChangeset
for help on using the changeset viewer.