From e4c4e08251a50f623806db73f218afba1013e59d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 15 Apr 2010 12:01:28 +0000 Subject: - Patch #748984 by droplet: fixed wrong multi-site directory aliasing example. --- includes/bootstrap.inc | 2 +- sites/example.sites.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 889d0e40a..1344a5bbd 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -352,7 +352,7 @@ function timer_stop($name) { * * $sites = array( * 'devexample.com' => 'example.com', - * 'localhost/example' => 'example.com', + * 'localhost.example' => 'example.com', * ); * * The above array will cause Drupal to look for a directory named diff --git a/sites/example.sites.php b/sites/example.sites.php index ec6e58504..1010b2753 100644 --- a/sites/example.sites.php +++ b/sites/example.sites.php @@ -18,7 +18,7 @@ * * $sites = array( * 'devexample.com' => 'example.com', - * 'localhost/example' => 'example.com', + * 'localhost.example' => 'example.com', * ); * * The above array will cause Drupal to look for a directory named @@ -41,4 +41,4 @@ * signs to enable. */ # $sites['devexample.com'] = 'example.com'; -# $sites['localhost/example'] = 'example.com'; +# $sites['localhost.example'] = 'example.com'; -- cgit v1.2.3