Plugin Directory

Changeset 910488


Ignore:
Timestamp:
05/08/2014 01:43:01 PM (12 years ago)
Author:
warkior
Message:

Fixing bug and releasing 1.01

Location:
formbuilder/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • formbuilder/trunk/formbuilder.php

    r910179 r910488  
    55Description: The FormBuilder plugin allows the administrator to create contact forms of a variety of types for use on their WordPress blog.  The FormBuilder has built-in spam protection and can be further protected by installing the Akismet anti-spam plugin.  Uninstall instructions can be found <a href="http://truthmedia.com/wordpress/formbuilder/documentation/uninstall/">here</a>.  Forms can be included on your pages and posts either by selecting the appropriate form in the dropdown below the content editing box, or by adding them directly to the content with [formbuilder:#] where # is the ID number of the form to be included.
    66Author: James Warkentin
    7 Version: 1.00
     7Version: 1.01
    88Author URI: http://warkior.com/
    99
     
    2828*/
    2929   
    30     define("FORMBUILDER_VERSION_NUM", "1.00");
     30    define("FORMBUILDER_VERSION_NUM", "1.01");
    3131
    3232    // Define FormBuilder Related Tables
  • formbuilder/trunk/php/formbuilder_activation_script.inc.php

    r910179 r910488  
    11041104               
    11051105                update_option('formbuilder_version', "1.00");
     1106            }
     1107           
     1108       
     1109           
     1110            // Upgrade to version 1.01
     1111            if(get_option('formbuilder_version') < 1.01)
     1112            {
     1113                formbuilder_admin_alert("Upgraded FormBuilder to version 1.01", nl2br("
     1114* Fixed an unpleasant bug introduced in v. 1.00
     1115                    "));
     1116               
     1117                update_option('formbuilder_version', "1.01");
    11061118            }
    11071119           
  • formbuilder/trunk/php/formbuilder_processing.inc.php

    r910179 r910488  
    13761376    {
    13771377        // Allow for other applications to handle mail if needed.
    1378         $send_result = apply_filters('formbuilder_send_email', array(
     1378        $send_data = array(
    13791379                'to'        => $to,
    13801380                'subject'   => $subject,
    13811381                'message'   => $message,
    13821382                'headers'   => $headers,
    1383         ));
     1383        );
     1384        $send_result = apply_filters('formbuilder_send_email', $send_data);
    13841385       
    13851386        // If a result is returned, we should not proceed with the
     
    13891390            return false;
    13901391        }
    1391         elseif(!empty($send_result))
     1392        elseif($send_result != $send_data)
    13921393        {
    13931394            return($send_result);
  • formbuilder/trunk/readme.txt

    r910482 r910488  
    44Requires at least: 2.7
    55Tested up to: 3.9
    6 Stable tag: 0.93
     6Stable tag: 1.01
    77
    88Allows WordPress bloggers to easily create customised contact forms for use on pages or posts.
Note: See TracChangeset for help on using the changeset viewer.