Changeset 910488
- Timestamp:
- 05/08/2014 01:43:01 PM (12 years ago)
- Location:
- formbuilder/trunk
- Files:
-
- 4 edited
-
formbuilder.php (modified) (2 diffs)
-
php/formbuilder_activation_script.inc.php (modified) (1 diff)
-
php/formbuilder_processing.inc.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
formbuilder/trunk/formbuilder.php
r910179 r910488 5 5 Description: 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. 6 6 Author: James Warkentin 7 Version: 1.0 07 Version: 1.01 8 8 Author URI: http://warkior.com/ 9 9 … … 28 28 */ 29 29 30 define("FORMBUILDER_VERSION_NUM", "1.0 0");30 define("FORMBUILDER_VERSION_NUM", "1.01"); 31 31 32 32 // Define FormBuilder Related Tables -
formbuilder/trunk/php/formbuilder_activation_script.inc.php
r910179 r910488 1104 1104 1105 1105 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"); 1106 1118 } 1107 1119 -
formbuilder/trunk/php/formbuilder_processing.inc.php
r910179 r910488 1376 1376 { 1377 1377 // Allow for other applications to handle mail if needed. 1378 $send_ result = apply_filters('formbuilder_send_email',array(1378 $send_data = array( 1379 1379 'to' => $to, 1380 1380 'subject' => $subject, 1381 1381 'message' => $message, 1382 1382 'headers' => $headers, 1383 )); 1383 ); 1384 $send_result = apply_filters('formbuilder_send_email', $send_data); 1384 1385 1385 1386 // If a result is returned, we should not proceed with the … … 1389 1390 return false; 1390 1391 } 1391 elseif( !empty($send_result))1392 elseif($send_result != $send_data) 1392 1393 { 1393 1394 return($send_result); -
formbuilder/trunk/readme.txt
r910482 r910488 4 4 Requires at least: 2.7 5 5 Tested up to: 3.9 6 Stable tag: 0.936 Stable tag: 1.01 7 7 8 8 Allows WordPress bloggers to easily create customised contact forms for use on pages or posts.
Note: See TracChangeset
for help on using the changeset viewer.