-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d471a20
commit 80c9643
Showing
5 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -443,7 +443,7 @@ public static function page() { | |
<th scope="row"><label for="name"><?php _e( 'Please name this job.', 'backwpup' ) ?></label></th> | ||
<td> | ||
<input name="name" type="text" id="name" data-empty="<?php _e( 'New Job', 'backwpup' ); ?>" | ||
value="<?php echo BackWPup_Option::get( $jobid, 'name' ); ?>" class="regular-text" /> | ||
value="<?php echo esc_html( BackWPup_Option::get( $jobid, 'name' ) ); ?>" class="regular-text" /> | ||
</td> | ||
</tr> | ||
</table> | ||
|
@@ -585,15 +585,15 @@ class="regular-text code help-tip" title="<?php | |
<th scope="row"><label for="mailaddresslog"><?php _e( 'Send log to email address', 'backwpup' ) ?></label></th> | ||
<td> | ||
<input name="mailaddresslog" type="text" id="mailaddresslog" | ||
value="<?php echo BackWPup_Option::get( $jobid, 'mailaddresslog' );?>" | ||
value="<?php echo esc_html( BackWPup_Option::get( $jobid, 'mailaddresslog' ) );?>" | ||
class="regular-text help-tip" title="<?php esc_attr_e( 'Leave empty to not have log sent. Or separate with , for more than one receiver.', 'backwpup' ); ?>" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<th scope="row"><label for="mailaddresssenderlog"><?php _e( 'Email FROM field', 'backwpup' ) ?></label></th> | ||
<td> | ||
<input name="mailaddresssenderlog" type="text" id="mailaddresssenderlog" | ||
value="<?php echo BackWPup_Option::get( $jobid, 'mailaddresssenderlog' );?>" | ||
value="<?php echo esc_html( BackWPup_Option::get( $jobid, 'mailaddresssenderlog' ) );?>" | ||
class="regular-text help-tip" title="<?php esc_attr_e( 'Email "From" field (Name < [email protected] >)', 'backwpup' ); ?>" /> | ||
</td> | ||
</tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters