Plugin Directory

Changeset 714044


Ignore:
Timestamp:
05/16/2013 07:39:47 PM (13 years ago)
Author:
solvemedia
Message:

Fixed bug where clicking reply comment would result in a media error

Location:
solvemedia/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • solvemedia/trunk/puzzle_reload.js

    r657566 r714044  
    1818    catch(e) {}
    1919});
    20 
  • solvemedia/trunk/readme.txt

    r696631 r714044  
    44Requires at least: 2.8.4
    55Tested up to: 3.5.1
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77
    88Secure & Monetize your site with Solve Media's CAPTCHA replacement.
     
    2020
    2121Add [solvemedia solvemedia-1] to a Contact-Form-7 text area to use the Solve Media CAPTCHA replacement on a contact form.
    22 
    23 Add `<?php do_action('comment_form', $post-\>ID); ?>` to the comments.php file of your theme if it is not already there. Otherwise, the code to display CAPTCHA never gets called.
    2422
    2523For basic usage, you can also have a look at the [plugin homepage](http://portal.solvemedia.com/portal/help/pub/wp/).
     
    4240
    4341== Changelog ==
     42
     43= 1.1.4 =
     44* Fixed bug where replying to a comment would break captcha in some browsers
    4445
    4546= 1.1.3 =
     
    6667
    6768== Upgrade Notice ==
     69
     70= 1.1.4 =
     71* Fixed bug where replying to a comment would break captcha in some browsers
    6872
    6973= 1.1.3 =
  • solvemedia/trunk/solvemedia.comment.inc

    r692424 r714044  
    88 * $Id$
    99 */
     10
     11//If solvemedia captchas for comments are enabled, load comment_reply.js
     12function adcopy_wp_enable_comment_reply_reload()
     13{
     14    global $WP_type, $adcopy_opt, $wp_plugin_url;
     15
     16    if($adcopy_opt['re_comments'])
     17    {
     18        wp_enqueue_script('solvemedia_comment_reply',
     19            $wp_plugin_url . '/solvemedia/solvemedia_comment_reply.js',
     20            array( 'jquery', 'jquery-form' )
     21        );
     22    }
     23}
     24
     25add_action('init', adcopy_wp_enable_comment_reply_reload);
    1026
    1127function adcopy_wp_hash_comment($id)
  • solvemedia/trunk/solvemedia.php

    r696631 r714044  
    44Plugin URI: http://www.solvemedia.com/
    55Description: Integrates Solve Media's anti-spam solutions with wordpress
    6 Version: 1.1.3
     6Version: 1.1.4
    77Author: Ilia Fishbein
    88Email: [email protected]
Note: See TracChangeset for help on using the changeset viewer.