Changeset 11204 for trunk/wp-admin/install.php
- Timestamp:
- 05/05/2009 07:43:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install.php
r11190 r11204 58 58 <tr> 59 59 <th scope="row"><label for="weblog_title"><?php _e('Blog Title'); ?></label></th> 60 <td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo ( isset($_POST['weblog_title']) ? attr($_POST['weblog_title']) : '' ); ?>" /></td>60 <td><input name="weblog_title" type="text" id="weblog_title" size="25" value="<?php echo ( isset($_POST['weblog_title']) ? esc_attr($_POST['weblog_title']) : '' ); ?>" /></td> 61 61 </tr> 62 62 <tr> 63 63 <th scope="row"><label for="admin_email"><?php _e('Your E-mail'); ?></label></th> 64 <td><input name="admin_email" type="text" id="admin_email" size="25" value="<?php echo ( isset($_POST['admin_email']) ? attr($_POST['admin_email']) : '' ); ?>" /><br />64 <td><input name="admin_email" type="text" id="admin_email" size="25" value="<?php echo ( isset($_POST['admin_email']) ? esc_attr($_POST['admin_email']) : '' ); ?>" /><br /> 65 65 <?php _e('Double-check your email address before continuing.'); ?> 66 66 </tr> … … 69 69 </tr> 70 70 </table> 71 <p class="step"><input type="submit" name="Submit" value="<?php _ea('Install WordPress'); ?>" class="button" /></p>71 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e('Install WordPress'); ?>" class="button" /></p> 72 72 </form> 73 73 <?php
Note: See TracChangeset
for help on using the changeset viewer.