Plugin Directory

Changeset 1532909


Ignore:
Timestamp:
11/12/2016 01:20:46 PM (9 years ago)
Author:
MrWiblog
Message:

0.5 (2016/11/12) Fixed XSS vulnerability found by Antonis Manaras

Location:
check-email/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • check-email/trunk/check-email.php

    r1259963 r1532909  
    55Description: Check email allows you to test if your WordPress installation is sending emails correctly.
    66Text Domain: check-email
    7 Version: 0.3
     7Version: 0.5
    88Author: Chris Taylor
    99Author URI: http://www.stillbreathing.co.uk
     
    1616$register->slug = "checkemail";
    1717$register->name = "Check Email";
    18 $register->version = "0.2";
     18$register->version = "0.5";
    1919$register->developer = "Chris Taylor";
    2020$register->homepage = "http://www.stillbreathing.co.uk";
     
    171171    <p><label for="checkemail_go" class="checkemail-hide">' . __( "Send", "check-email" ) . '</label>
    172172    <input type="submit" name="checkemail_go" id="checkemail_go" class="button-primary" value="' . __( "Send test email", "check-email" ) . '" /></p>
     173    ';
     174    wp_nonce_field( 'checkemail' );
     175    echo '
    173176    </form>
    174177   
     
    180183// send a test email
    181184function checkemail_send($to, $headers = "auto") {
     185    check_admin_referer( 'checkemail' );
    182186    global $current_user;
    183187    if ( $headers == "auto" ) {
  • check-email/trunk/readme.txt

    r1259963 r1532909  
    44Tags: check, test, email, smtp, pop, send, delivery
    55Requires at least: 2.7
    6 Tested up to: 4.3
    7 Stable tag: 0.4
     6Tested up to: 4.6.1
     7Stable tag: 0.5
    88
    99Check email allows you to test if your WordPress installation is sending emails correctly by sending a test email to an address of your choice. Allows overriding of email headers and carbon copying to another address.
     
    2727== Changelog ==
    2828
     290.5 Fixed XSS vulnerability found by Antonis Manaras
    29300.4 Added more information from php.ini, fixed incorrect textdomains
    30310.3 Moved the page to the Tools menu
Note: See TracChangeset for help on using the changeset viewer.