Use proper functions for escaped translations.

pros jcastaneda.
fixes #30012.

git-svn-id: https://develop.svn.wordpress.org/trunk@29961 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2014-10-18 20:10:47 +00:00
parent 0caa0b1dbf
commit ac90567ef1
5 changed files with 18 additions and 18 deletions

View File

@@ -287,7 +287,7 @@ class WP_Widget_Archives extends WP_Widget {
if ( $d ) {
?>
<select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'>
<option value=""><?php echo esc_attr( __( 'Select Month' ) ); ?></option>
<option value=""><?php esc_attr_e( 'Select Month' ); ?></option>
<?php
/**