Changeset 10691
- Timestamp:
- 03/03/2009 10:51:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r10685 r10691 608 608 function wp_set_auth_cookie($user_id, $remember = false, $secure = '') { 609 609 if ( $remember ) { 610 $expiration = $expire = time() + 1209600;610 $expiration = $expire = time() + apply_filters('auth_cookie_expiration', 1209600, $user_id, $remember); 611 611 } else { 612 $expiration = time() + 172800;612 $expiration = time() + apply_filters('auth_cookie_expiration', 172800, $user_id, $remember); 613 613 $expire = 0; 614 614 }
Note: See TracChangeset
for help on using the changeset viewer.