Changeset 2436 for trunk/wp-includes/functions.php
- Timestamp:
- 03/13/2005 04:36:09 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r2432 r2436 1712 1712 endif; 1713 1713 1714 // Cookie safe redirect. Works around IIS Set-Cookie bug. 1715 // http://support.microsoft.com/kb/q176113/ 1716 if ( !function_exists('wp_redirect') ) : 1717 function wp_redirect($location) { 1718 global $is_IIS; 1719 1720 if ($is_IIS) 1721 header("Refresh: 0;url=$location"); 1722 else 1723 header("Location: $location"); 1724 } 1725 endif; 1726 1714 1727 function is_plugin_page() { 1715 1728 global $plugin_page;
Note: See TracChangeset
for help on using the changeset viewer.