Skip to content

Commit

Permalink
import version 13.1
Browse files Browse the repository at this point in the history
git-svn-id: https://plugins.svn.wordpress.org/cforms2/trunk@1008271 b8457f37-d9ea-0310-8a92-e5e31aec5664
  • Loading branch information
bgermann committed Oct 16, 2014
1 parent d5ef5cd commit c8ae070
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
5 changes: 3 additions & 2 deletions ____HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@

!!! IMPORTANT !!!

WHAT's NEW in cformsII - v13.1
*) bugfix: radio button fix

WHAT's NEW in cformsII - v13.0
*) WP3.3 compliance
Expand All @@ -47,8 +49,7 @@ WHAT's NEW in cformsII - v13.0
*) other: checkbox fields now include a "checked symbol", instead of the word "on"
*) other: email layout enhancements (optimized for gmail & HTML capable clients)
!!! NOTE: in order to fully enable the new layout for old forms, you MUST
create a brand new form and copy/paste the HTML message parts (admin &
auto-confirmation message) from this new form to all your old forms !!!
reset the Admin & Auto Confirmation Messages (see button above each)



Expand Down
4 changes: 2 additions & 2 deletions cforms.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
Plugin URI: http://www.deliciousdays.com/cforms-plugin
Description: cformsII offers unparalleled flexibility in deploying contact forms across your blog. Features include: comprehensive SPAM protection, Ajax support, Backup & Restore, Multi-Recipients, Role Manager support, Database tracking and many more. Please see ____HISTORY.txt for <strong>what's new</strong> and current <strong>bugfixes</strong>.
Author: Oliver Seidel
Version: 13.0
Version: 13.1
Author URI: http://www.deliciousdays.com
*/

global $localversion;
$localversion = '13.0';
$localversion = '13.1';

### debug messages
$cfdebug = false;
Expand Down
5 changes: 0 additions & 5 deletions lib_ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,6 @@ function cforms_submitcomment($content) {
else
$value = '';

} else if ( $field_type == "radiobuttons" ) {

if ( ! $value <> 'on' )
$value = '';

}

### determine tracked field name
Expand Down
5 changes: 0 additions & 5 deletions lib_nonajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,6 @@
else
$value = '';

} else if ( $field_type == "radiobuttons" ) {

if ( ! $value <> 'on' )
$value = '';

}

### determine tracked field name
Expand Down

0 comments on commit c8ae070

Please sign in to comment.