Changeset 2339909
- Timestamp:
- 07/13/2020 07:27:55 PM (6 years ago)
- Location:
- sendpress/trunk
- Files:
-
- 3 edited
-
classes/views/class-sendpress-view-settings-account.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
sendpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendpress/trunk/classes/views/class-sendpress-view-settings-account.php
r2338634 r2339909 122 122 <div class="form-group"> 123 123 <label for="fromname"><?php _e('From Name','sendpress'); ?></label> 124 <input name="fromname" tabindex=1 type="text" id="fromname" value="<?php echo SendPress_Option::get('fromname'); ?>" class="form-control">124 <input name="fromname" tabindex=1 type="text" id="fromname" value="<?php echo esc_attr( SendPress_Option::get('fromname')); ?>" class="form-control"> 125 125 </div> 126 126 <div class="form-group"> 127 127 <label for="fromemail"><?php _e('From Email','sendpress'); ?></label> 128 <input name="fromemail" tabindex=2 type="text" id="fromemail" value="<?php echo SendPress_Option::get('fromemail'); ?>" class="form-control">128 <input name="fromemail" tabindex=2 type="text" id="fromemail" value="<?php echo esc_attr( SendPress_Option::get('fromemail')); ?>" class="form-control"> 129 129 </div> 130 130 … … 136 136 <div class="form-group"> 137 137 <label for="testemail"><?php _e('Where to send Test Email','sendpress'); ?></label> 138 <input name="testemail" type="text" id="test-email-main" value="<?php echo SendPress_Option::get( 'testemail'); ?>" class="form-control"/>138 <input name="testemail" type="text" id="test-email-main" value="<?php echo esc_attr( SendPress_Option::get( 'testemail' )); ?>" class="form-control"/> 139 139 </div> 140 140 <div class="sp-row"> … … 387 387 <form method="post" id="post-test" class="form-inline"> 388 388 <input type="hidden" name="action" value="send-test-email" /> 389 <input name="testemail" type="hidden" id="test-email-form" value="<?php echo SendPress_Option::get( 'testemail'); ?>" class="form-control"/>389 <input name="testemail" type="hidden" id="test-email-form" value="<?php echo esc_attr( SendPress_Option::get( 'testemail' )); ?>" class="form-control"/> 390 390 391 391 <br class="clear"> -
sendpress/trunk/readme.txt
r2338634 r2339909 5 5 Requires at least: 4.4 6 6 Tested up to: 5.4 7 Stable tag: 1.20.7.1 07 Stable tag: 1.20.7.13 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 119 119 Previous releases can be downloaded from [GitHub](https://github.com/brewlabs/sendpress/releases) 120 120 121 = 1.20.7.13 - 2020.7.13 = 122 * Security fixes for settings page 123 121 124 = 1.20.7.10 - 2020.7.10 = 122 125 * Security fixes and updates -
sendpress/trunk/sendpress.php
r2338634 r2339909 2 2 /* 3 3 Plugin Name: SendPress Newsletters 4 Version: 1.20.7.1 04 Version: 1.20.7.13 5 5 Plugin URI: https://sendpress.com 6 6 Description: Easy to manage Newsletters for WordPress. … … 20 20 define( 'SENDPRESS_API_VERSION', 1 ); 21 21 define( 'SENDPRESS_MINIMUM_WP_VERSION', '3.6' ); 22 define( 'SENDPRESS_VERSION', '1.20.7.1 0' );22 define( 'SENDPRESS_VERSION', '1.20.7.13' ); 23 23 define( 'SENDPRESS_URL', plugin_dir_url( __FILE__ ) ); 24 24 define( 'SENDPRESS_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.