Changeset 22314 for trunk/wp-admin/setup-config.php
- Timestamp:
- 10/26/2012 07:40:39 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/setup-config.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r22124 r22314 97 97 <title><?php _e( 'WordPress › Setup Configuration File' ); ?></title> 98 98 <link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" /> 99 <link rel="stylesheet" href="../wp-includes/css/buttons.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" /> 99 100 100 101 </head> … … 120 121 <p><?php _e( "In all likelihood, these items were supplied to you by your Web Host. If you do not have this information, then you will need to contact them before you can continue. If you’re all ready…" ); ?></p> 121 122 122 <p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&noapi'; ?>" class="button "><?php _e( 'Let’s go!' ); ?></a></p>123 <p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&noapi'; ?>" class="button button-large"><?php _e( 'Let’s go!' ); ?></a></p> 123 124 <?php 124 125 break; … … 157 158 </table> 158 159 <?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="1" /><?php } ?> 159 <p class="step"><input name="submit" type="submit" value="<?php echo htmlspecialchars( __( 'Submit' ), ENT_QUOTES ); ?>" class="button " /></p>160 <p class="step"><input name="submit" type="submit" value="<?php echo htmlspecialchars( __( 'Submit' ), ENT_QUOTES ); ?>" class="button button-large" /></p> 160 161 </form> 161 162 <?php … … 166 167 $$key = trim( stripslashes( $_POST[ $key ] ) ); 167 168 168 $tryagain_link = '</p><p class="step"><a href="setup-config.php?step=1" onclick="javascript:history.go(-1);return false;" class="button ">' . __( 'Try again' ) . '</a>';169 $tryagain_link = '</p><p class="step"><a href="setup-config.php?step=1" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>'; 169 170 170 171 if ( empty( $prefix ) ) … … 265 266 ?></textarea> 266 267 <p><?php _e( 'After you’ve done that, click “Run the install.”' ); ?></p> 267 <p class="step"><a href="install.php" class="button "><?php _e( 'Run the install' ); ?></a></p>268 <p class="step"><a href="install.php" class="button button-large"><?php _e( 'Run the install' ); ?></a></p> 268 269 <script> 269 270 (function(){ … … 285 286 <p><?php _e( "All right sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" ); ?></p> 286 287 287 <p class="step"><a href="install.php" class="button "><?php _e( 'Run the install' ); ?></a></p>288 <p class="step"><a href="install.php" class="button button-large"><?php _e( 'Run the install' ); ?></a></p> 288 289 <?php 289 290 endif;
Note: See TracChangeset
for help on using the changeset viewer.