From a4f050e48687425eab72f3c3882ddd9bbb2103a1 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 9 Jan 2008 16:37:43 +0000 Subject: [PATCH] Concat secret key with salt. see #5367 git-svn-id: http://svn.automattic.com/wordpress/trunk@6583 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index ae505c885e..6751f4b8e9 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -724,7 +724,7 @@ function wp_salt() { } } - return apply_filters('salt', $salt); + return apply_filters('salt', $secret_key . $salt); } endif;