Changes in trunk/wp-activate.php [17347:17831]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-activate.php
r17347 r17831 1 1 <?php 2 define( "WP_INSTALLING", true );2 define( 'WP_INSTALLING', true ); 3 3 4 4 /** Sets up the WordPress Environment. */ … … 15 15 $wp_object_cache->cache_enabled = false; 16 16 17 do_action( "activate_header");17 do_action( 'activate_header' ); 18 18 19 19 function do_activate_header() { 20 do_action( "activate_wp_head");20 do_action( 'activate_wp_head' ); 21 21 } 22 22 add_action( 'wp_head', 'do_activate_header' ); … … 88 88 89 89 <?php if ( $url != network_home_url('', 'http') ) : ?> 90 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'), $url, $url . 'wp-login.php' ); ?></p>90 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'), $url, $url . 'wp-login.php' ); ?></p> 91 91 <?php else: ?> 92 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p>92 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p> 93 93 <?php endif; 94 94 }
Note: See TracChangeset
for help on using the changeset viewer.