Concat secret key with salt. see #5367

git-svn-id: http://svn.automattic.com/wordpress/trunk@6583 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-01-09 16:37:43 +00:00
parent d66013fdd9
commit a4f050e486
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ function wp_salt() {
}
}
return apply_filters('salt', $salt);
return apply_filters('salt', $secret_key . $salt);
}
endif;