Changeset 1347826
- Timestamp:
- 02/10/2016 08:20:18 PM (10 years ago)
- Location:
- wp-fevents-book/trunk
- Files:
-
- 4 edited
-
init.php (modified) (1 diff)
-
languages/wp-fevents-book.pot (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-fevents-book.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-fevents-book/trunk/init.php
r951607 r1347826 4 4 Plugin URI: http://wordpress.org/extend/plugins/wp-fevents-book/ 5 5 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.4 06 Version: 0.41 7 7 Author: faina09 8 8 Author URI: http://profiles.wordpress.org/faina09 9 9 License: GPLv2 or later 10 10 */ 11 $VER = '0.4 0';11 $VER = '0.41'; 12 12 require_once('wp-fevents-book.php'); 13 13 //require_once('wp-fevents-6r.php'); -
wp-fevents-book/trunk/languages/wp-fevents-book.pot
r882804 r1347826 70 70 msgid "" 71 71 "Selezionare se NON si desidera ricevere informazioni su nuove iniziative o " 72 "su modifiche alle iniz aitive esistenti"72 "su modifiche alle iniziative esistenti" 73 73 msgstr "" 74 74 -
wp-fevents-book/trunk/readme.txt
r951607 r1347826 4 4 Donate link: http://goo.gl/QzIZZ 5 5 Requires at least: 3.5 6 Tested up to: 4. 06 Tested up to: 4.4.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 65 65 66 66 == Changelog == 67 = 0.41 = 68 * CAPTCHA using Securimage-WP plugin 67 69 = 0.40 = 68 70 * WP4.0 -
wp-fevents-book/trunk/wp-fevents-book.php
r882804 r1347826 502 502 private function do_save( $nuovoiscritto, $cmd, $eventid ) 503 503 { 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 504 512 $addnew = true; 505 513 if ( !add_option( $this->wpf_code . 'iscritti', array( $nuovoiscritto ) ) ) { … … 634 642 <td><input type="checkbox" name="boolConfrm" /></td> 635 643 </tr>'; 644 } 645 if (function_exists('siwp_captcha_shortcode')) { 646 $out .= '<tr>'.siwp_captcha_shortcode().'</tr>'; 636 647 } 637 648 $out .= '</tbody>
Note: See TracChangeset
for help on using the changeset viewer.