Changeset 11204 for trunk/wp-admin/export.php
- Timestamp:
- 05/05/2009 07:43:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/export.php
r11110 r11204 43 43 foreach ( $authors as $id ) { 44 44 $o = get_userdata( $id ); 45 echo "<option value='" . attr($o->ID) . "'>$o->display_name</option>";45 echo "<option value='" . esc_attr($o->ID) . "'>$o->display_name</option>"; 46 46 } 47 47 ?> … … 50 50 </tr> 51 51 </table> 52 <p class="submit"><input type="submit" name="submit" class="button" value="<?php _ea('Download Export File'); ?>" />52 <p class="submit"><input type="submit" name="submit" class="button" value="<?php esc_attr_e('Download Export File'); ?>" /> 53 53 <input type="hidden" name="download" value="true" /> 54 54 </p>
Note: See TracChangeset
for help on using the changeset viewer.