Plugin Directory

Changeset 617091


Ignore:
Timestamp:
10/25/2012 12:19:36 AM (13 years ago)
Author:
properwp
Message:

fixing email and wp_kses error

Location:
proper-contact-form/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • proper-contact-form/trunk/proper-contact-form.php

    r610257 r617091  
    154154       
    155155    // 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']) : '';
    157157    if (!empty($contact_reason))
    158158        $body .= "
  • proper-contact-form/trunk/readme.txt

    r610503 r617091  
    55Requires at least: 3.0
    66Tested up to: 3.4.2
    7 Stable tag: 0.9
     7Stable tag: 0.9.1
    88
    99Creates a flexible, secure contact form on your WP site
     
    1515At the moment, this plugins creates a contact form with the shortcode `[proper_contact_form]` that works on any page. Users have the option to:
    1616
    17     - 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
     17- 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
    2222
    2323The 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.
     
    4646== Changelog ==
    4747
     48= 0.9.1 =
     49* Fixed wp_kses error
     50* Corrected outgoing email
     51
    4852= 0.9 =
    4953* First release
Note: See TracChangeset for help on using the changeset viewer.