Plugin Directory

Changeset 661450


Ignore:
Timestamp:
01/31/2013 12:12:57 AM (13 years ago)
Author:
bitacre
Message:

1.5.4

Location:
super-simple-contact-form/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • super-simple-contact-form/trunk/readme.txt

    r660872 r661450  
    66Requires at least: 2.8
    77Tested up to: 3.5.1
    8 Stable tag: 1.5.3
     8Stable tag: 1.5.4
    99
    1010An absurdly simple contact form plugin. Just type [contact]. There are no options.
     
    7878
    7979== Changelog ==
     80= 1.5.4 =
     81* Fixes no message text
     82
    8083= 1.5.3 =
    8184* Updated for 3.5.1 to use mail() instead of wp_mail(), which appears to no longer be working.
     
    119122
    120123== Upgrade Notice ==
     124= 1.5.4 =
     125Critical upgrade.
     126
    121127= 1.5.3 =
    122128Recommended upgrade, uses mail() instead of the broken wp_mail().
  • super-simple-contact-form/trunk/super-simple-contact-form.php

    r660872 r661450  
    44Plugin URI: http://shinraholdings.com/plugins/super-simple-contact-form/
    55Description: An absurdly simple contact form plugin. Just type [contact]. There are no options.
    6 Version: 1.5.3
     6Version: 1.5.4
    77Author: bitacre
    88Author URI: http://shinraholdings.com
     
    5252            // use admin account's email address as sender if none given
    5353            $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'] );
    5457           
    5558            // build headers and send mail
     
    131134                <p id="sscf-message-wrapper" class="sscf-input-wrapper">
    132135                    <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>
    134137                </p>
    135138                   
Note: See TracChangeset for help on using the changeset viewer.