summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-08 20:27:51 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-08 20:27:51 +0000
commitd802c69a43ab0f47e88f8b26ea9f655af1404a5f (patch)
treef82efe031b4b91b06a224677f2941f5005722b11 /index.php
parentc51b5c8b0b1663fec1cf2af882b58bbdb46c5a97 (diff)
downloadbrdo-d802c69a43ab0f47e88f8b26ea9f655af1404a5f.tar.gz
brdo-d802c69a43ab0f47e88f8b26ea9f655af1404a5f.tar.bz2
#363013 by mannkind: Use getwd() rather than realpath(__FILE__) to determine drupal root, so we don't break symlinks.
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index d776d767a..f83ae4c01 100644
--- a/index.php
+++ b/index.php
@@ -15,7 +15,7 @@
/**
* Root directory of Drupal installation.
*/
-define('DRUPAL_ROOT', dirname(realpath(__FILE__)));
+define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);