Changeset 11110 for trunk/wp-admin/install.php
- Timestamp:
- 04/28/2009 06:37:51 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install.php
r10774 r11110 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']) ? $_POST['weblog_title']: '' ); ?>" /></td>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> 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']) ? $_POST['admin_email']: '' ); ?>" /><br />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 /> 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 _e ('Install WordPress'); ?>" class="button" /></p>71 <p class="step"><input type="submit" name="Submit" value="<?php _ea('Install WordPress'); ?>" class="button" /></p> 72 72 </form> 73 73 <?php
Note: See TracChangeset
for help on using the changeset viewer.