Removed $pathserver. Now use $siteurl everywhere.

git-svn-id: https://develop.svn.wordpress.org/trunk@83 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mike Little
2003-05-24 21:50:22 +00:00
parent 62acdfc3bc
commit 6c3fc2a305
7 changed files with 19 additions and 29 deletions

View File

@@ -18,14 +18,6 @@ $blogfilename = 'index.php';
$blogname = "my weblog";
$blogdescription = "babblings !";
// $pathserver is where you have uploaded b2: for example, 'http://mydomain.com' (no ending slash !)
// by default b2 is set to run in the folder your blog resides, same as $siteurl
$pathserver = 'http://example.com';
// your email (obvious eh ?)
$admin_email = 'you@example.com';
@@ -42,7 +34,6 @@ $users_can_register = 1;
$start_of_week = 1;
// ** MySQL settings **
// fill with your database details
@@ -335,7 +326,7 @@ $HTTP_USER_AGENT=getenv('HTTP_USER_AGENT'); /* visitor's browser */
$server = $dbhost;
$loginsql = $dbusername;
$passsql = $dbpassword;
$path = $pathserver;
$path = $siteurl;
$base = $dbname;
// This is so the new admin location works
@@ -343,5 +334,4 @@ $base = $dbname;
//$path_sep=';';
$path_sep=':';
ini_set('include_path', ".$path_sep..$path_sep../$b2inc$path_sep./$b2inc");
?>
?>