Changeset 945 for trunk/wp-settings.php
- Timestamp:
- 02/26/2004 04:15:48 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r885 r945 49 49 // accessing a single global $all_settings var 50 50 if (!strstr($_SERVER['REQUEST_URI'], 'install.php') && !strstr($_SERVER['REQUEST_URI'], 'wp-admin/import')) { 51 $siteurl = get_settings('siteurl');52 $blogfilename = get_settings('blogfilename');53 51 $blogname = get_settings('blogname'); 54 52 $blogdescription = get_settings('blogdescription'); … … 103 101 //} 104 102 // Used to guarantee unique cookies 105 $cookiehash = md5( $siteurl);103 $cookiehash = md5(get_settings('siteurl')); 106 104 107 105 } //end !$_wp_installing
Note: See TracChangeset
for help on using the changeset viewer.