Changeset 617091
- Timestamp:
- 10/25/2012 12:19:36 AM (13 years ago)
- Location:
- proper-contact-form/trunk
- Files:
-
- 2 edited
-
proper-contact-form.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
proper-contact-form/trunk/proper-contact-form.php
r610257 r617091 154 154 155 155 // Sanitize contact reason 156 $contact_reason = isset($_POST['contact-reasons']) ? wp_kses($_POST['contact-reasons']) : '';156 $contact_reason = isset($_POST['contact-reasons']) ? strip_tags($_POST['contact-reasons']) : ''; 157 157 if (!empty($contact_reason)) 158 158 $body .= " -
proper-contact-form/trunk/readme.txt
r610503 r617091 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.2 7 Stable tag: 0.9 7 Stable tag: 0.9.1 8 8 9 9 Creates a flexible, secure contact form on your WP site … … 15 15 At the moment, this plugins creates a contact form with the shortcode `[proper_contact_form]` that works on any page. Users have the option to: 16 16 17 - Choose the fields that appear18 - Create an auto-respond email19 - Redirect submissions to a new page (helpful for goal tracking)20 - Store contacts in the database21 - Over-ride field names17 - Choose the fields that appear 18 - Create an auto-respond email 19 - Redirect submissions to a new page (helpful for goal tracking) 20 - Store contacts in the database 21 - Over-ride field names 22 22 23 23 The current, basic functionality will not change but, in a future version, WP users will be able to add custom forms with validation quickly and easily. … … 46 46 == Changelog == 47 47 48 = 0.9.1 = 49 * Fixed wp_kses error 50 * Corrected outgoing email 51 48 52 = 0.9 = 49 53 * First release
Note: See TracChangeset
for help on using the changeset viewer.