Changeset 11204 for trunk/wp-admin/import/wordpress.php
- Timestamp:
- 05/05/2009 07:43:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wordpress.php
r11190 r11204 234 234 235 235 echo '<p class="submit">'; 236 echo '<input type="submit" class="button" value="'. _a('Submit') .'" />'.'<br />';236 echo '<input type="submit" class="button" value="'. esc_attr__('Submit') .'" />'.'<br />'; 237 237 echo '</p>'; 238 238 echo '</form>'; … … 243 243 244 244 if ( $this->allow_create_users() ) { 245 printf('<label>'.__('Create user %1$s or map to existing'), ' <input type="text" value="'. attr($author) .'" name="'.'user_create['.intval($n).']'.'" maxlength="30" /></label> <br />');245 printf('<label>'.__('Create user %1$s or map to existing'), ' <input type="text" value="'. esc_attr($author) .'" name="'.'user_create['.intval($n).']'.'" maxlength="30" /></label> <br />'); 246 246 } 247 247 else { … … 250 250 251 251 // keep track of $n => $author name 252 echo '<input type="hidden" name="author_in['.intval($n).']" value="' .attr($author).'" />';252 echo '<input type="hidden" name="author_in['.intval($n).']" value="' . esc_attr($author).'" />'; 253 253 254 254 $users = get_users_of_blog();
Note: See TracChangeset
for help on using the changeset viewer.