Changeset 612 for trunk/wp-settings.php
- Timestamp:
- 12/15/2003 08:02:19 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-settings.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r601 r612 7 7 require ($abspath . $b2inc . '/functions.php'); 8 8 require ($abspath . $b2inc . '/template-functions.php'); 9 require ($abspath . $b2inc . '/vars.php');10 9 require ($abspath . $b2inc . '/class-xmlrpc.php'); 11 10 require ($abspath . $b2inc . '/class-xmlrpcs.php'); … … 41 40 // "When trying to design a foolproof system, 42 41 // never underestimate the ingenuity of the fools :)" 43 // 44 // Strip trailing slashes from $siteurl. But don't do 45 // anything that could cause an infinite loop. 46 while (('/' == substr($siteurl, -1)) && (10 > $i++)) { 47 $siteurl = substr($siteurl, 0, -1); 48 } 42 43 $siteurl = preg_replace('|/+$|', '', $siteurl); 49 44 $blogfilename = get_settings('blogfilename'); 50 45 $blogname = get_settings('blogname'); … … 103 98 104 99 } //end !$_wp_installing 100 101 require ($abspath . $b2inc . '/vars.php'); 105 102 ?>
Note: See TracChangeset
for help on using the changeset viewer.