Changeset 1769

Show
Ignore:
Timestamp:
10/10/04 18:07:33 (4 years ago)
Author:
saxmatt
Message:

Minor header cleanup

Files:

Legend:

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

    r1768 r1769  
    33 
    44if ( !empty($_COOKIE['wordpressuser_' . COOKIEHASH]) && !wp_login($_COOKIE['wordpressuser_' . COOKIEHASH], $_COOKIE['wordpresspass_' . COOKIEHASH) ) { 
    5     header('Expires: Wed, 11 Jan 1984 05:00:00 GMT'); 
     5    header('Expires: Wed, 5 Jun 1979 23:41:00 GMT'); // Michel's birthday 
    66    header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); 
    77    header('Cache-Control: no-cache, must-revalidate'); 
  • trunk/wp-login.php

    r1768 r1769  
    3737    } 
    3838} 
     39 
    3940$error = ''; 
     41 
     42header('Expires: Wed, 11 Jan 1984 05:00:00 GMT'); 
     43header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); 
     44header('Cache-Control: no-cache, must-revalidate'); 
     45header('Pragma: no-cache'); 
     46 
    4047// If someone has moved WordPress let's try to detect it 
    4148if ( dirname('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']) != get_settings('siteurl') ) 
     
    4855    setcookie('wordpressuser_' . COOKIEHASH, ' ', time() - 31536000, COOKIEPATH); 
    4956    setcookie('wordpresspass_' . COOKIEHASH, ' ', time() - 31536000, COOKIEPATH); 
    50     header('Expires: Wed, 11 Jan 1984 05:00:00 GMT'); 
    51     header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); 
    52     header('Cache-Control: no-cache, must-revalidate'); 
    53     header('Pragma: no-cache'); 
     57 
    5458    if ($is_IIS) 
    5559        header('Refresh: 0;url=wp-login.php'); 
     
    149153    } 
    150154 
    151     header('Expires: Wed, 11 Jan 1984 05:00:00 GMT'); 
    152     header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); 
    153     header('Cache-Control: no-cache, must-revalidate'); 
    154     header('Pragma: no-cache'); 
    155  
    156155    if ( wp_login($log, $pwd) ) { 
    157156        $user_login = $log; 
     
    172171 
    173172    if ( wp_login($user_login, $user_pass_md5, true) ) { 
    174         header('Expires: Wed, 5 Jun 1979 23:41:00 GMT'); // Michel's birthday 
    175         header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); 
    176         header('Cache-Control: no-cache, must-revalidate'); 
    177         header('Pragma: no-cache'); 
    178173        header('Location: wp-admin/'); 
    179174        exit();