mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Coding style
git-svn-id: http://svn.automattic.com/wordpress/trunk@12735 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f9a92c2588
commit
9bea527ac3
23
wp-login.php
23
wp-login.php
@ -74,7 +74,7 @@ function login_header($title = 'Log In', $message = '', $wp_error = '') {
|
|||||||
do_action('login_head'); ?>
|
do_action('login_head'); ?>
|
||||||
</head>
|
</head>
|
||||||
<body class="login">
|
<body class="login">
|
||||||
<?php if( !is_multisite() ) { ?>
|
<?php if ( !is_multisite() ) { ?>
|
||||||
<div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', 'http://wordpress.org/'); ?>" title="<?php echo apply_filters('login_headertitle', __('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1>
|
<div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', 'http://wordpress.org/'); ?>" title="<?php echo apply_filters('login_headertitle', __('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1>
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', 'http://' . $current_site->domain . $current_site->path ); ?>" title="<?php echo apply_filters('login_headertitle', $current_site->site_name ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
|
<div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', 'http://' . $current_site->domain . $current_site->path ); ?>" title="<?php echo apply_filters('login_headertitle', $current_site->site_name ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
|
||||||
@ -165,18 +165,16 @@ function retrieve_password() {
|
|||||||
$wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
|
$wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));
|
||||||
}
|
}
|
||||||
$message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
|
$message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
|
||||||
if( !is_multisite() ) {
|
if ( !is_multisite() )
|
||||||
$message .= get_option('siteurl') . "\r\n\r\n";
|
$message .= get_option('siteurl') . "\r\n\r\n";
|
||||||
} else {
|
else
|
||||||
$message .= 'http://' . trailingslashit( $current_site->domain . $current_site->path ) . "\r\n\r\n";
|
$message .= 'http://' . trailingslashit( $current_site->domain . $current_site->path ) . "\r\n\r\n";
|
||||||
}
|
|
||||||
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
|
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
|
||||||
$message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
|
$message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
|
||||||
if( !is_multisite() ) {
|
if ( !is_multisite() )
|
||||||
$message .= site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n";
|
$message .= site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n";
|
||||||
} else {
|
else
|
||||||
$message .= 'http://' . trailingslashit( $current_site->domain . $current_site->path ) . "wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login) . "\r\n";
|
$message .= 'http://' . trailingslashit( $current_site->domain . $current_site->path ) . "wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login) . "\r\n";
|
||||||
}
|
|
||||||
|
|
||||||
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
|
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
|
||||||
// we want to reverse this for the plain text arena of emails.
|
// we want to reverse this for the plain text arena of emails.
|
||||||
@ -409,11 +407,12 @@ case 'rp' :
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'register' :
|
case 'register' :
|
||||||
if( is_multisite() ) {
|
if ( is_multixsite() ) {
|
||||||
// WPMU doesn't use this
|
// WPMU doesn't use this
|
||||||
wp_redirect( apply_filters( 'wp_signup_location', get_bloginfo('wpurl') . '/wp-signup.php' ) );
|
wp_redirect( apply_filters( 'wp_signup_location', get_bloginfo('wpurl') . '/wp-signup.php' ) );
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !get_option('users_can_register') ) {
|
if ( !get_option('users_can_register') ) {
|
||||||
wp_redirect('wp-login.php?registration=disabled');
|
wp_redirect('wp-login.php?registration=disabled');
|
||||||
exit();
|
exit();
|
||||||
|
@ -57,7 +57,7 @@ wp_set_wpdb_vars();
|
|||||||
|
|
||||||
wp_start_object_cache();
|
wp_start_object_cache();
|
||||||
|
|
||||||
if( is_multisite() )
|
if ( is_multisite() )
|
||||||
require (ABSPATH . WPINC . '/ms-load.php');
|
require (ABSPATH . WPINC . '/ms-load.php');
|
||||||
|
|
||||||
require (ABSPATH . WPINC . '/plugin.php');
|
require (ABSPATH . WPINC . '/plugin.php');
|
||||||
|
@ -8,7 +8,7 @@ add_action( 'wp_head', 'signuppageheaders' ) ;
|
|||||||
require( 'wp-blog-header.php' );
|
require( 'wp-blog-header.php' );
|
||||||
require_once( ABSPATH . WPINC . '/registration.php' );
|
require_once( ABSPATH . WPINC . '/registration.php' );
|
||||||
|
|
||||||
if( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) {
|
if ( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) {
|
||||||
wp_redirect( "http://{$current_site->domain}{$current_site->path}" );
|
wp_redirect( "http://{$current_site->domain}{$current_site->path}" );
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
@ -22,7 +22,7 @@ function signuppageheaders() {
|
|||||||
echo "<meta name='robots' content='noindex,nofollow' />\n";
|
echo "<meta name='robots' content='noindex,nofollow' />\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if( $current_blog->domain . $current_blog->path != $current_site->domain . $current_site->path ) {
|
if ( $current_blog->domain . $current_blog->path != $current_site->domain . $current_site->path ) {
|
||||||
wp_redirect( "http://" . $current_site->domain . $current_site->path . "wp-signup.php" );
|
wp_redirect( "http://" . $current_site->domain . $current_site->path . "wp-signup.php" );
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
@ -56,7 +56,7 @@ get_header();
|
|||||||
function show_blog_form($blogname = '', $blog_title = '', $errors = '') {
|
function show_blog_form($blogname = '', $blog_title = '', $errors = '') {
|
||||||
global $current_site;
|
global $current_site;
|
||||||
// Blog name
|
// Blog name
|
||||||
if( !is_subdomain_install() )
|
if ( !is_subdomain_install() )
|
||||||
echo '<label for="blogname">' . __('Blog Name:') . '</label>';
|
echo '<label for="blogname">' . __('Blog Name:') . '</label>';
|
||||||
else
|
else
|
||||||
echo '<label for="blogname">' . __('Blog Domain:') . '</label>';
|
echo '<label for="blogname">' . __('Blog Domain:') . '</label>';
|
||||||
@ -65,18 +65,17 @@ function show_blog_form($blogname = '', $blog_title = '', $errors = '') {
|
|||||||
<p class="error"><?php echo $errmsg ?></p>
|
<p class="error"><?php echo $errmsg ?></p>
|
||||||
<?php }
|
<?php }
|
||||||
|
|
||||||
if( !is_subdomain_install() ) {
|
if ( !is_subdomain_install() )
|
||||||
echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'. esc_attr($blogname) .'" maxlength="50" /><br />';
|
echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'. esc_attr($blogname) .'" maxlength="50" /><br />';
|
||||||
} else {
|
else
|
||||||
echo '<input name="blogname" type="text" id="blogname" value="'.esc_attr($blogname).'" maxlength="50" /><span class="suffix_address">.' . $current_site->domain . $current_site->path . '</span><br />';
|
echo '<input name="blogname" type="text" id="blogname" value="'.esc_attr($blogname).'" maxlength="50" /><span class="suffix_address">.' . $current_site->domain . $current_site->path . '</span><br />';
|
||||||
}
|
|
||||||
if ( !is_user_logged_in() ) {
|
if ( !is_user_logged_in() ) {
|
||||||
print '(<strong>' . __( 'Your address will be ' );
|
print '(<strong>' . __( 'Your address will be ' );
|
||||||
if( !is_subdomain_install() ) {
|
if ( !is_subdomain_install() )
|
||||||
print $current_site->domain . $current_site->path . __( 'blogname' );
|
print $current_site->domain . $current_site->path . __( 'blogname' );
|
||||||
} else {
|
else
|
||||||
print __( 'domain.' ) . $current_site->domain . $current_site->path;
|
print __( 'domain.' ) . $current_site->domain . $current_site->path;
|
||||||
}
|
|
||||||
echo '.</strong> ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)' ) . '</p>';
|
echo '.</strong> ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)' ) . '</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,11 +94,11 @@ function show_blog_form($blogname = '', $blog_title = '', $errors = '') {
|
|||||||
<?php _e('I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site.'); ?>
|
<?php _e('I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site.'); ?>
|
||||||
<div style="clear:both;"></div>
|
<div style="clear:both;"></div>
|
||||||
<label class="checkbox" for="blog_public_on">
|
<label class="checkbox" for="blog_public_on">
|
||||||
<input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?>checked="checked"<?php } ?> />
|
<input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if ( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?>checked="checked"<?php } ?> />
|
||||||
<strong><?php _e( 'Yes' ); ?></strong>
|
<strong><?php _e( 'Yes' ); ?></strong>
|
||||||
</label>
|
</label>
|
||||||
<label class="checkbox" for="blog_public_off">
|
<label class="checkbox" for="blog_public_off">
|
||||||
<input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if( isset( $_POST['blog_public'] ) && $_POST['blog_public'] == '0' ) { ?>checked="checked"<?php } ?> />
|
<input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if ( isset( $_POST['blog_public'] ) && $_POST['blog_public'] == '0' ) { ?>checked="checked"<?php } ?> />
|
||||||
<strong><?php _e( 'No' ); ?></strong>
|
<strong><?php _e( 'No' ); ?></strong>
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</p>
|
||||||
@ -190,7 +189,7 @@ function signup_another_blog($blogname = '', $blog_title = '', $errors = '') {
|
|||||||
function validate_another_blog_signup() {
|
function validate_another_blog_signup() {
|
||||||
global $wpdb, $current_user, $blogname, $blog_title, $errors, $domain, $path;
|
global $wpdb, $current_user, $blogname, $blog_title, $errors, $domain, $path;
|
||||||
$current_user = wp_get_current_user();
|
$current_user = wp_get_current_user();
|
||||||
if( !is_user_logged_in() )
|
if ( !is_user_logged_in() )
|
||||||
die();
|
die();
|
||||||
|
|
||||||
$result = validate_blog_form();
|
$result = validate_blog_form();
|
||||||
@ -225,11 +224,10 @@ function signup_user($user_name = '', $user_email = '', $errors = '') {
|
|||||||
|
|
||||||
if ( !is_wp_error($errors) )
|
if ( !is_wp_error($errors) )
|
||||||
$errors = new WP_Error();
|
$errors = new WP_Error();
|
||||||
if( isset( $_POST[ 'signup_for' ] ) ) {
|
if ( isset( $_POST[ 'signup_for' ] ) )
|
||||||
$signup[ wp_specialchars( $_POST[ 'signup_for' ] ) ] = 'checked="checked"';
|
$signup[ wp_specialchars( $_POST[ 'signup_for' ] ) ] = 'checked="checked"';
|
||||||
} else {
|
else
|
||||||
$signup[ 'blog' ] = 'checked="checked"';
|
$signup[ 'blog' ] = 'checked="checked"';
|
||||||
}
|
|
||||||
|
|
||||||
// allow definition of default variables
|
// allow definition of default variables
|
||||||
$filtered_results = apply_filters('signup_user_init', array('user_name' => $user_name, 'user_email' => $user_email, 'errors' => $errors ));
|
$filtered_results = apply_filters('signup_user_init', array('user_name' => $user_name, 'user_email' => $user_email, 'errors' => $errors ));
|
||||||
@ -246,9 +244,9 @@ function signup_user($user_name = '', $user_email = '', $errors = '') {
|
|||||||
<?php show_user_form($user_name, $user_email, $errors); ?>
|
<?php show_user_form($user_name, $user_email, $errors); ?>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<?php if( $active_signup == 'blog' ) { ?>
|
<?php if ( $active_signup == 'blog' ) { ?>
|
||||||
<input id="signupblog" type="hidden" name="signup_for" value="blog" />
|
<input id="signupblog" type="hidden" name="signup_for" value="blog" />
|
||||||
<?php } elseif( $active_signup == 'user' ) { ?>
|
<?php } elseif ( $active_signup == 'user' ) { ?>
|
||||||
<input id="signupblog" type="hidden" name="signup_for" value="user" />
|
<input id="signupblog" type="hidden" name="signup_for" value="user" />
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<input id="signupblog" type="radio" name="signup_for" value="blog" <?php echo $signup['blog'] ?> />
|
<input id="signupblog" type="radio" name="signup_for" value="blog" <?php echo $signup['blog'] ?> />
|
||||||
@ -369,25 +367,24 @@ function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user
|
|||||||
|
|
||||||
// Main
|
// Main
|
||||||
$active_signup = get_site_option( 'registration' );
|
$active_signup = get_site_option( 'registration' );
|
||||||
if( !$active_signup )
|
if ( !$active_signup )
|
||||||
$active_signup = 'all';
|
$active_signup = 'all';
|
||||||
|
|
||||||
$active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
|
$active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
|
||||||
|
|
||||||
if( is_super_admin() )
|
if ( is_super_admin() )
|
||||||
echo '<div class="mu_alert">' . sprintf( __( "Greetings Site Administrator! You are currently allowing '%s' registrations. To change or disable registration go to your <a href='wp-admin/ms-options.php'>Options page</a>." ), $active_signup ) . '</div>';
|
echo '<div class="mu_alert">' . sprintf( __( "Greetings Site Administrator! You are currently allowing '%s' registrations. To change or disable registration go to your <a href='wp-admin/ms-options.php'>Options page</a>." ), $active_signup ) . '</div>';
|
||||||
|
|
||||||
$newblogname = isset($_GET['new']) ? strtolower(preg_replace('/^-|-$|[^-a-zA-Z0-9]/', '', $_GET['new'])) : null;
|
$newblogname = isset($_GET['new']) ? strtolower(preg_replace('/^-|-$|[^-a-zA-Z0-9]/', '', $_GET['new'])) : null;
|
||||||
|
|
||||||
$current_user = wp_get_current_user();
|
$current_user = wp_get_current_user();
|
||||||
if( $active_signup == "none" ) {
|
if ( $active_signup == "none" ) {
|
||||||
_e( "Registration has been disabled." );
|
_e( "Registration has been disabled." );
|
||||||
} elseif( $active_signup == 'blog' && !is_user_logged_in() ){
|
} elseif ( $active_signup == 'blog' && !is_user_logged_in() ) {
|
||||||
if( is_ssl() ) {
|
if ( is_ssl() )
|
||||||
$proto = 'https://';
|
$proto = 'https://';
|
||||||
} else {
|
else
|
||||||
$proto = 'http://';
|
$proto = 'http://';
|
||||||
}
|
|
||||||
$login_url = site_url( 'wp-login.php?redirect_to=' . urlencode($proto . $_SERVER['HTTP_HOST'] . '/wp-signup.php' ));
|
$login_url = site_url( 'wp-login.php?redirect_to=' . urlencode($proto . $_SERVER['HTTP_HOST'] . '/wp-signup.php' ));
|
||||||
echo sprintf( __( "You must first <a href=\"%s\">login</a>, and then you can create a new blog."), $login_url );
|
echo sprintf( __( "You must first <a href=\"%s\">login</a>, and then you can create a new blog."), $login_url );
|
||||||
} else {
|
} else {
|
||||||
@ -399,7 +396,7 @@ if( $active_signup == "none" ) {
|
|||||||
_e( "User registration has been disabled." );
|
_e( "User registration has been disabled." );
|
||||||
break;
|
break;
|
||||||
case 'validate-blog-signup':
|
case 'validate-blog-signup':
|
||||||
if( $active_signup == 'all' || $active_signup == 'blog' )
|
if ( $active_signup == 'all' || $active_signup == 'blog' )
|
||||||
validate_blog_signup();
|
validate_blog_signup();
|
||||||
else
|
else
|
||||||
_e( "Blog registration has been disabled." );
|
_e( "Blog registration has been disabled." );
|
||||||
@ -410,21 +407,21 @@ if( $active_signup == "none" ) {
|
|||||||
default :
|
default :
|
||||||
$user_email = $_POST[ 'user_email' ];
|
$user_email = $_POST[ 'user_email' ];
|
||||||
do_action( "preprocess_signup_form" ); // populate the form from invites, elsewhere?
|
do_action( "preprocess_signup_form" ); // populate the form from invites, elsewhere?
|
||||||
if ( is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'blog' ) ) {
|
if ( is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'blog' ) )
|
||||||
signup_another_blog($newblogname);
|
signup_another_blog($newblogname);
|
||||||
} elseif( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) ) {
|
elseif( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) )
|
||||||
signup_user( $newblogname, $user_email );
|
signup_user( $newblogname, $user_email );
|
||||||
} elseif( is_user_logged_in() == false && ( $active_signup == 'blog' ) ) {
|
elseif( is_user_logged_in() == false && ( $active_signup == 'blog' ) )
|
||||||
_e( "I'm sorry. We're not accepting new registrations at this time." );
|
_e( "I'm sorry. We're not accepting new registrations at this time." );
|
||||||
} else {
|
else
|
||||||
_e( "You're logged in already. No need to register again!" );
|
_e( "You're logged in already. No need to register again!" );
|
||||||
}
|
|
||||||
if ($newblogname) {
|
if ($newblogname) {
|
||||||
if( !is_subdomain_install() )
|
if ( !is_subdomain_install() )
|
||||||
$newblog = 'http://' . $current_site->domain . $current_site->path . $newblogname . '/';
|
$newblog = 'http://' . $current_site->domain . $current_site->path . $newblogname . '/';
|
||||||
else
|
else
|
||||||
$newblog = 'http://' . $newblogname . '.' . $current_site->domain . $current_site->path;
|
$newblog = 'http://' . $newblogname . '.' . $current_site->domain . $current_site->path;
|
||||||
if ($active_signup == 'blog' || $active_signup == 'all')
|
if ( $active_signup == 'blog' || $active_signup == 'all' )
|
||||||
printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist but you can create it now!</em></p>"), $newblog );
|
printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist but you can create it now!</em></p>"), $newblog );
|
||||||
else
|
else
|
||||||
printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist.</em></p>"), $newblog );
|
printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist.</em></p>"), $newblog );
|
||||||
|
551
xmlrpc.php
551
xmlrpc.php
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user