From 0dcd6e0e9c617fba0ea87f03c112087de770e0fd Mon Sep 17 00:00:00 2001 From: westi Date: Sat, 14 Jun 2008 20:58:43 +0000 Subject: [PATCH] Make sure force_ssl_login and force_ssl_admin work as designed. Fixes #7140 props wet. git-svn-id: http://svn.automattic.com/wordpress/trunk@8087 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 7199d32cb..ac3628f24 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1773,7 +1773,7 @@ function force_ssl_login($force = '') { static $forced; if ( '' != $force ) { - $old_forcded = $forced; + $old_forced = $forced; $forced = $force; return $old_forced; } @@ -1785,7 +1785,7 @@ function force_ssl_admin($force = '') { static $forced; if ( '' != $force ) { - $old_forcded = $forced; + $old_forced = $forced; $forced = $force; return $old_forced; }