Add auth_redirect action

git-svn-id: http://svn.automattic.com/wordpress/trunk@10685 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-03-02 23:42:28 +00:00
parent 27ff02e402
commit 5d3a29dacd

View File

@ -724,6 +724,8 @@ function auth_redirect() {
}
if ( $user_id = wp_validate_auth_cookie() ) {
do_action('auth_redirect', $user_id);
// If the user wants ssl but the session is not ssl, redirect.
if ( !$secure && get_user_option('use_ssl', $user_id) && false !== strpos($_SERVER['REQUEST_URI'], 'wp-admin') ) {
if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) {