Plugin Directory

Changeset 1347826


Ignore:
Timestamp:
02/10/2016 08:20:18 PM (10 years ago)
Author:
faina09
Message:

0.41

  • CAPTCHA using Securimage-WP plugin
Location:
wp-fevents-book/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-fevents-book/trunk/init.php

    r951607 r1347826  
    44  Plugin URI: http://wordpress.org/extend/plugins/wp-fevents-book/
    55  Description: Create FEvents Book. Use the shortcode <code>[feventsbook]</code> to display all enabled Events, or <code>[feventsbook eventid=x]</code> to display Event with ID=x.
    6   Version: 0.40
     6  Version: 0.41
    77  Author: faina09
    88  Author URI: http://profiles.wordpress.org/faina09
    99  License: GPLv2 or later
    1010 */
    11 $VER = '0.40';
     11$VER = '0.41';
    1212require_once('wp-fevents-book.php');
    1313//require_once('wp-fevents-6r.php');
  • wp-fevents-book/trunk/languages/wp-fevents-book.pot

    r882804 r1347826  
    7070msgid ""
    7171"Selezionare se NON si desidera ricevere informazioni su nuove iniziative o "
    72 "su modifiche alle inizaitive esistenti"
     72"su modifiche alle iniziative esistenti"
    7373msgstr ""
    7474
  • wp-fevents-book/trunk/readme.txt

    r951607 r1347826  
    44Donate link: http://goo.gl/QzIZZ
    55Requires at least: 3.5
    6 Tested up to: 4.0
     6Tested up to: 4.4.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    6565
    6666== Changelog ==
     67= 0.41 =
     68* CAPTCHA using Securimage-WP plugin
    6769= 0.40 =
    6870* WP4.0
  • wp-fevents-book/trunk/wp-fevents-book.php

    r882804 r1347826  
    502502    private function do_save( $nuovoiscritto, $cmd, $eventid )
    503503    {
     504        if (function_exists('siwp_check_captcha')) {
     505            // make sure plugin is enabled before calling function
     506            if (false == siwp_check_captcha($err)) {
     507                $errors['captcha'] = $err;
     508                die('captcha: '.$err);
     509            }
     510        }
     511       
    504512        $addnew = true;
    505513        if ( !add_option( $this->wpf_code . 'iscritti', array( $nuovoiscritto ) ) ) {
     
    634642            <td><input type="checkbox" name="boolConfrm" /></td>
    635643            </tr>';
     644        }
     645        if (function_exists('siwp_captcha_shortcode')) {
     646            $out .= '<tr>'.siwp_captcha_shortcode().'</tr>';
    636647        }
    637648        $out .= '</tbody>
Note: See TracChangeset for help on using the changeset viewer.