diff --git a/src/wp-activate.php b/src/wp-activate.php
index ff71779036..2016fafe30 100644
|
a
|
b
|
$blog_details = get_blog_details();
|
| 127 | 127 | <?php if ( ! $key ) { ?> |
| 128 | 128 | |
| 129 | 129 | <h2><?php _e( 'Activation Key Required' ); ?></h2> |
| 130 | | <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url( $blog_details->path . 'wp-activate.php' ); ?>"> |
| | 130 | <form name="activateform" id="activateform" method="post" action="<?php echo esc_url( network_site_url( $blog_details->path . 'wp-activate.php' ) ); ?>"> |
| 131 | 131 | <p> |
| 132 | 132 | <label for="key"><?php _e( 'Activation Key:' ); ?></label> |
| 133 | 133 | <br /><input type="text" name="key" id="key" value="" size="50" /> |
| … |
… |
$blog_details = get_blog_details();
|
| 179 | 179 | <h2><?php _e( 'Your account is now active!' ); ?></h2> |
| 180 | 180 | |
| 181 | 181 | <div id="signup-welcome"> |
| 182 | | <p><span class="h3"><?php _e( 'Username:' ); ?></span> <?php echo $user->user_login; ?></p> |
| 183 | | <p><span class="h3"><?php _e( 'Password:' ); ?></span> <?php echo $result['password']; ?></p> |
| | 182 | <p><span class="h3"><?php _e( 'Username:' ); ?></span> <?php esc_html_e( $user->user_login ); ?></p> |
| | 183 | <p><span class="h3"><?php _e( 'Password:' ); ?></span> <?php esc_html_e( $result['password'] ); ?></p> |
| 184 | 184 | </div> |
| 185 | 185 | |
| 186 | 186 | <?php |
diff --git a/src/wp-links-opml.php b/src/wp-links-opml.php
index 9739a9a767..95b3926786 100644
|
a
|
b
|
echo '<?xml version="1.0"?' . ">\n";
|
| 33 | 33 | printf( __( 'Links for %s' ), esc_attr( get_bloginfo( 'name', 'display' ) ) ); |
| 34 | 34 | ?> |
| 35 | 35 | </title> |
| 36 | | <dateCreated><?php echo gmdate( 'D, d M Y H:i:s' ); ?> GMT</dateCreated> |
| | 36 | <dateCreated><?php esc_html_e( gmdate( 'D, d M Y H:i:s' ) ); ?> GMT</dateCreated> |
| 37 | 37 | <?php |
| 38 | 38 | /** |
| 39 | 39 | * Fires in the OPML header. |
| … |
… |
foreach ( (array) $cats as $cat ) :
|
| 83 | 83 | <outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_attr( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_attr( $bookmark->link_url ); ?>" updated=" |
| 84 | 84 | <?php |
| 85 | 85 | if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) { |
| 86 | | echo $bookmark->link_updated;} |
| | 86 | esc_html_e( $bookmark->link_updated );} |
| 87 | 87 | ?> |
| 88 | 88 | " /> |
| 89 | 89 | <?php |
diff --git a/src/wp-login.php b/src/wp-login.php
index b7c14b4c83..8d9781cca7 100644
|
a
|
b
|
function login_header( $title = 'Log In', $message = '', $wp_error = null ) {
|
| 90 | 90 | <html <?php language_attributes(); ?>> |
| 91 | 91 | <head> |
| 92 | 92 | <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" /> |
| 93 | | <title><?php echo $login_title; ?></title> |
| | 93 | <title><?php esc_html_e( $login_title ); ?></title> |
| 94 | 94 | <?php |
| 95 | 95 | |
| 96 | 96 | wp_enqueue_style( 'login' ); |
| … |
… |
function login_header( $title = 'Log In', $message = '', $wp_error = null ) {
|
| 206 | 206 | |
| 207 | 207 | ?> |
| 208 | 208 | <div id="login"> |
| 209 | | <h1><a href="<?php echo esc_url( $login_header_url ); ?>"><?php echo $login_header_text; ?></a></h1> |
| | 209 | <h1><a href="<?php echo esc_url( $login_header_url ); ?>"><?php esc_html_e( $login_header_text ); ?></a></h1> |
| 210 | 210 | <?php |
| 211 | 211 | /** |
| 212 | 212 | * Filters the message to display above the login form. |