summaryrefslogtreecommitdiffstats
path: root/wp-config-sample.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-07-02 16:58:00 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-07-02 16:58:00 +0000
commit9a3b52a00835411618a6ca1b3859c3121b836e8d (patch)
tree1829b93ea69b3b4c28f1d9a61552226fa55f78a7 /wp-config-sample.php
parent6d572cbe19ffedb5b92d8528798c5683154bb185 (diff)
downloadwordpress-mu-9a3b52a00835411618a6ca1b3859c3121b836e8d.tar.gz
wordpress-mu-9a3b52a00835411618a6ca1b3859c3121b836e8d.tar.xz
wordpress-mu-9a3b52a00835411618a6ca1b3859c3121b836e8d.zip
Added LOGGED_IN KEY and SALT, fixes #670
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1345 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-config-sample.php')
-rw-r--r--wp-config-sample.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/wp-config-sample.php b/wp-config-sample.php
index 11a4d30..72daf8d 100644
--- a/wp-config-sample.php
+++ b/wp-config-sample.php
@@ -13,8 +13,10 @@ $base = 'BASE';
// Change SECRET_KEY to a unique phrase. You won't have to remember it later,
// so make it long and complicated. You can visit http://api.wordpress.org/secret-key/1.0/
// to get a secret key generated for you, or just make something up.
-define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
-define('SECRET_SALT', 'put your unique phrase here'); // Change this to a unique phrase.
+define('SECRET_KEY', 'put your unique phrase here'); // Change these to unique phrases.
+define('SECRET_SALT', 'put your unique phrase here');
+define('LOGGED_IN_KEY', 'put your unique phrase here');
+define('LOGGED_IN_SALT', 'put your unique phrase here');
// double check $base
if( $base == 'BASE' )