Changeset 1532909
- Timestamp:
- 11/12/2016 01:20:46 PM (9 years ago)
- Location:
- check-email/trunk
- Files:
-
- 2 edited
-
check-email.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
check-email/trunk/check-email.php
r1259963 r1532909 5 5 Description: Check email allows you to test if your WordPress installation is sending emails correctly. 6 6 Text Domain: check-email 7 Version: 0. 37 Version: 0.5 8 8 Author: Chris Taylor 9 9 Author URI: http://www.stillbreathing.co.uk … … 16 16 $register->slug = "checkemail"; 17 17 $register->name = "Check Email"; 18 $register->version = "0. 2";18 $register->version = "0.5"; 19 19 $register->developer = "Chris Taylor"; 20 20 $register->homepage = "http://www.stillbreathing.co.uk"; … … 171 171 <p><label for="checkemail_go" class="checkemail-hide">' . __( "Send", "check-email" ) . '</label> 172 172 <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 ' 173 176 </form> 174 177 … … 180 183 // send a test email 181 184 function checkemail_send($to, $headers = "auto") { 185 check_admin_referer( 'checkemail' ); 182 186 global $current_user; 183 187 if ( $headers == "auto" ) { -
check-email/trunk/readme.txt
r1259963 r1532909 4 4 Tags: check, test, email, smtp, pop, send, delivery 5 5 Requires at least: 2.7 6 Tested up to: 4. 37 Stable tag: 0. 46 Tested up to: 4.6.1 7 Stable tag: 0.5 8 8 9 9 Check 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. … … 27 27 == Changelog == 28 28 29 0.5 Fixed XSS vulnerability found by Antonis Manaras 29 30 0.4 Added more information from php.ini, fixed incorrect textdomains 30 31 0.3 Moved the page to the Tools menu
Note: See TracChangeset
for help on using the changeset viewer.