Changeset 11204 for trunk/wp-includes/update.php
- Timestamp:
- 05/05/2009 07:43:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/update.php
r11109 r11204 63 63 $returns = explode("\n", $entry); 64 64 $new_option = new stdClass(); 65 $new_option->response = attr( $returns[0] );65 $new_option->response = esc_attr( $returns[0] ); 66 66 if ( isset( $returns[1] ) ) 67 67 $new_option->url = clean_url( $returns[1] ); … … 69 69 $new_option->package = clean_url( $returns[2] ); 70 70 if ( isset( $returns[3] ) ) 71 $new_option->current = attr( $returns[3] );71 $new_option->current = esc_attr( $returns[3] ); 72 72 if ( isset( $returns[4] ) ) 73 $new_option->locale = attr( $returns[4] );73 $new_option->locale = esc_attr( $returns[4] ); 74 74 $new_options[] = $new_option; 75 75 }
Note: See TracChangeset
for help on using the changeset viewer.