Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-activate.php

    r17347 r17831  
    11<?php
    2 define( "WP_INSTALLING", true );
     2define( 'WP_INSTALLING', true );
    33
    44/** Sets up the WordPress Environment. */
     
    1515    $wp_object_cache->cache_enabled = false;
    1616
    17 do_action("activate_header");
     17do_action( 'activate_header' );
    1818
    1919function do_activate_header() {
    20     do_action("activate_wp_head");
     20    do_action( 'activate_wp_head' );
    2121}
    2222add_action( 'wp_head', 'do_activate_header' );
     
    8888
    8989            <?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">Login</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>
    9191            <?php else: ?>
    92                 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Login</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>
    9393            <?php endif;
    9494        }
Note: See TracChangeset for help on using the changeset viewer.