Changeset 1601 for trunk/wp-admin/upgrade.php
- Timestamp:
- 09/05/2004 01:22:17 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upgrade.php
r1575 r1601 12 12 <html xmlns="http://www.w3.org/1999/xhtml"> 13 13 <head> 14 <title>WordPress › Upgrade WordPress</title> 15 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 16 <style media="screen" type="text/css"> 14 <title>WordPress › Upgrade</title> 15 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 16 <style media="screen" type="text/css"> 17 <!-- 18 html { 19 background: #eee; 20 } 17 21 body { 18 background -color: white;19 color: black;22 background: #fff; 23 color: #000; 20 24 font-family: Georgia, "Times New Roman", Times, serif; 21 margin-left: 15%; 22 margin-right: 15%; 25 margin-left: 20%; 26 margin-right: 20%; 27 padding: .2em 2em; 28 } 29 30 h1 { 31 color: #006; 32 font-size: 18px; 33 font-weight: lighter; 34 } 35 36 h2 { 37 font-size: 16px; 38 } 39 40 p, li, dt { 41 line-height: 140%; 42 padding-bottom: 2px; 43 } 44 45 ul, ol { 46 padding: 5px 5px 5px 20px; 23 47 } 24 48 #logo { 25 margin: 0; 26 padding: 0; 27 background-image: url(http://wordpress.org/images/logo.png); 28 background-repeat: no-repeat; 29 height: 60px; 30 border-bottom: 4px solid #333; 49 margin-bottom: 2em; 31 50 } 32 #logo a { 33 display: block; 34 text-decoration: none; 35 text-indent: -100em; 36 height: 60px; 37 } 38 p { 39 line-height: 140%; 40 } 51 .step a, .step input { 52 font-size: 2em; 53 } 54 .step, th { 55 text-align: right; 56 } 57 #footer { 58 text-align: center; border-top: 1px solid #ccc; padding-top: 1em; font-style: italic; 59 } 60 --> 41 61 </style> 42 </head><body> 43 <h1 id="logo"><a href="http://wordpress.org">WordPress</a></h1> 62 </head> 63 <body> 64 <h1 id="logo"><img alt="WordPress" src="http://static.wordpress.org/logo.png" /></h1> 44 65 <?php 45 66 switch($step) { … … 47 68 case 0: 48 69 ?> 49 <p>This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient. 50 < p>If you’re all ready, <a href="upgrade.php?step=1">let's go</a>! </p>70 <p>This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient.</p> 71 <h2 class="step"><a href="upgrade.php?step=1">Upgrade WordPress »</a></h2> 51 72 <?php 52 73 break; 53 74 54 75 case 1: 76 make_db_current_silent(); 55 77 upgrade_all(); 56 78 ?>
Note: See TracChangeset
for help on using the changeset viewer.