From e4c4e08251a50f623806db73f218afba1013e59d Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Thu, 15 Apr 2010 12:01:28 +0000
Subject: [PATCH] - 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 889d0e40a946..1344a5bbd7ef 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 ec6e5850470d..1010b2753ff5 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';
-- 
GitLab