Changeset 2340
- Timestamp:
- 02/15/2005 12:17:21 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r2334 r2340 1753 1753 } 1754 1754 1755 if ( !function_exists('wp_setcookie') ) : 1755 1756 function wp_setcookie($username, $password, $already_md5 = false, $home = '', $siteurl = '') { 1756 1757 if ( !$already_md5 ) … … 1778 1779 } 1779 1780 } 1780 1781 endif; 1782 1783 if ( !function_exists('wp_clearcookie') ) : 1781 1784 function wp_clearcookie() { 1782 1785 setcookie('wordpressuser_' . COOKIEHASH, ' ', time() - 31536000, COOKIEPATH); … … 1785 1788 setcookie('wordpresspass_' . COOKIEHASH, ' ', time() - 31536000, SITECOOKIEPATH); 1786 1789 } 1787 1790 endif; 1788 1791 ?>
Note: See TracChangeset
for help on using the changeset viewer.