summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-04-15 12:01:28 +0000
committerDries Buytaert <dries@buytaert.net>2010-04-15 12:01:28 +0000
commite4c4e08251a50f623806db73f218afba1013e59d (patch)
tree07cd50819e155345a9ea914ac142a6f7cd12da03
parent108220bb9007c8315172deedec9becf31257e735 (diff)
downloadbrdo-e4c4e08251a50f623806db73f218afba1013e59d.tar.gz
brdo-e4c4e08251a50f623806db73f218afba1013e59d.tar.bz2
- Patch #748984 by droplet: fixed wrong multi-site directory aliasing example.
-rw-r--r--includes/bootstrap.inc2
-rw-r--r--sites/example.sites.php4
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';