XPressME Integration Kit

Trac


Ignore:
Timestamp:
Dec 3, 2009, 5:11:25 PM (14 years ago)
Author:
toemon
Message:

WP Super Cacheプラグインへの対応 #263

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/include/set_cash_cookie_path.php

    r232 r477  
    88 */ 
    99if ( !defined('USER_COOKIE') ) 
    10         define('USER_COOKIE', $modname . 'user_' . $hash); 
     10        define('USER_COOKIE', 'wordpress_' . $modname . 'user_' . $hash); 
    1111 
    1212/** 
     
    1515 */ 
    1616if ( !defined('PASS_COOKIE') ) 
    17         define('PASS_COOKIE', $modname . 'pass_' . $hash); 
     17        define('PASS_COOKIE', 'wordpress_' . $modname . 'pass_' . $hash); 
    1818 
    1919/** 
     
    2222 */ 
    2323if ( !defined('AUTH_COOKIE') ) 
    24         define('AUTH_COOKIE', $modname . '_auth_' . $hash); 
     24        define('AUTH_COOKIE', 'wordpress_' . $modname . '_auth_' . $hash); 
    2525 
    2626/** 
     
    2929 */ 
    3030if ( !defined('SECURE_AUTH_COOKIE') ) 
    31         define('SECURE_AUTH_COOKIE', $modname . '_sec_' . $hash); 
     31        define('SECURE_AUTH_COOKIE', 'wordpress_' . $modname . '_sec_' . $hash); 
    3232 
    3333/** 
     
    3636 */ 
    3737if ( !defined('LOGGED_IN_COOKIE') ) 
    38         define('LOGGED_IN_COOKIE', $modname . '_logged_in_' . $hash); 
     38        define('LOGGED_IN_COOKIE', 'wordpress_' . $modname . '_logged_in_' . $hash); 
    3939 
    4040/** 
     
    4343 */ 
    4444if ( !defined('TEST_COOKIE') ) 
    45         define('TEST_COOKIE', $modname . '_test_cookie'); 
     45        define('TEST_COOKIE', 'wordpress_' . $modname . '_test_cookie'); 
    4646 
    4747/** 
Note: See TracChangeset for help on using the changeset viewer.