Changeset 1388

Show
Ignore:
Timestamp:
07/21/08 15:55:54 (5 months ago)
Author:
donncha
Message:

Added "SECURE_AUTH_SALT" constant so sitewide ssl logins work

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/mu.php

    r1361 r1388  
    664664        if( !is_site_admin() ) 
    665665                return; 
    666         $secret_keys = array( 'SECRET_KEY', 'SECRET_SALT', 'LOGGED_IN_KEY', 'LOGGED_IN_SALT', 'AUTH_KEY', 'SECURE_AUTH_KEY' ); 
     666        $secret_keys = array( 'SECRET_KEY', 'SECRET_SALT', 'LOGGED_IN_KEY', 'LOGGED_IN_SALT', 'AUTH_KEY', 'SECURE_AUTH_KEY', 'SECURE_AUTH_SALT' ); 
    667667        $out = ''; 
    668668        foreach( $secret_keys as $key ) { 
  • trunk/wp-config-sample.php

    r1377 r1388  
    1616define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase. 
    1717define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase. 
     18define('SECURE_AUTH_SALT', 'put your unique phrase here'); // Change this to a unique phrase. 
    1819define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase. 
    1920define('SECRET_KEY', 'put your unique phrase here'); // Change these to unique phrases.