Changeset 661450
- Timestamp:
- 01/31/2013 12:12:57 AM (13 years ago)
- Location:
- super-simple-contact-form/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
super-simple-contact-form.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
super-simple-contact-form/trunk/readme.txt
r660872 r661450 6 6 Requires at least: 2.8 7 7 Tested up to: 3.5.1 8 Stable tag: 1.5. 38 Stable tag: 1.5.4 9 9 10 10 An absurdly simple contact form plugin. Just type [contact]. There are no options. … … 78 78 79 79 == Changelog == 80 = 1.5.4 = 81 * Fixes no message text 82 80 83 = 1.5.3 = 81 84 * Updated for 3.5.1 to use mail() instead of wp_mail(), which appears to no longer be working. … … 119 122 120 123 == Upgrade Notice == 124 = 1.5.4 = 125 Critical upgrade. 126 121 127 = 1.5.3 = 122 128 Recommended upgrade, uses mail() instead of the broken wp_mail(). -
super-simple-contact-form/trunk/super-simple-contact-form.php
r660872 r661450 4 4 Plugin URI: http://shinraholdings.com/plugins/super-simple-contact-form/ 5 5 Description: An absurdly simple contact form plugin. Just type [contact]. There are no options. 6 Version: 1.5. 36 Version: 1.5.4 7 7 Author: bitacre 8 8 Author URI: http://shinraholdings.com … … 52 52 // use admin account's email address as sender if none given 53 53 $from_email = esc_attr( $_POST['sscf_from_email'] ); 54 55 // use admin account's email address as sender if none given 56 $message = esc_attr( $_POST['sscf_message'] ); 54 57 55 58 // build headers and send mail … … 131 134 <p id="sscf-message-wrapper" class="sscf-input-wrapper"> 132 135 <label for="sscf_message">' . $message . '</label> 133 <textarea name="sscf_message" id="sscf_message" cols="45" rows="5"' . ( empty( $_POST['sscf_ from_message'] ) && array_key_exists( 'submit', $_POST ) ? ' class="sscf-forgot"' : '' ) . '>' . (isset( $_POST['sscf_message'] ) ? esc_attr( $_POST['sscf_message'] ) : '' ) . '</textarea>136 <textarea name="sscf_message" id="sscf_message" cols="45" rows="5"' . ( empty( $_POST['sscf_message'] ) && array_key_exists( 'submit', $_POST ) ? ' class="sscf-forgot"' : '' ) . '>' . (isset( $_POST['sscf_message'] ) ? esc_attr( $_POST['sscf_message'] ) : '' ) . '</textarea> 134 137 </p> 135 138
Note: See TracChangeset
for help on using the changeset viewer.