diff --git a/src/wp-admin/setup-config.php b/src/wp-admin/setup-config.php
index d2fa4ae8ea..1628553392 100644
a
|
b
|
switch ( $step ) { |
204 | 204 | </p> |
205 | 205 | <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 are ready…' ); ?></p> |
206 | 206 | |
207 | | <p class="step"><a href="<?php echo $step_1; ?>" class="button button-large"><?php _e( 'Let’s go!' ); ?></a></p> |
| 207 | <p class="step"><a href="<?php echo esc_url( $step_1 ); ?>" class="button button-large"><?php _e( 'Let’s go!' ); ?></a></p> |
208 | 208 | <?php |
209 | 209 | break; |
210 | 210 | |
… |
… |
switch ( $step ) { |
443 | 443 | </label></p> |
444 | 444 | <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly" aria-describedby="wp-config-description"><?php echo $config_text; ?></textarea> |
445 | 445 | <p><?php _e( 'After you’ve done that, click “Run the installation”.' ); ?></p> |
446 | | <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p> |
| 446 | <p class="step"><a href="<?php echo esc_url( $install ); ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p> |
447 | 447 | <script> |
448 | 448 | (function(){ |
449 | 449 | if ( ! /iPad|iPod|iPhone/.test( navigator.userAgent ) ) { |
… |
… |
if ( ! /iPad|iPod|iPhone/.test( navigator.userAgent ) ) { |
508 | 508 | </h1> |
509 | 509 | <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> |
510 | 510 | |
511 | | <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p> |
| 511 | <p class="step"><a href="<?php echo esc_url( $install ); ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p> |
512 | 512 | <?php |
513 | 513 | else : |
514 | 514 | printf( '<p>%s</p>', $error_message ); |