summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-09-08 19:19:01 +0000
committerDries Buytaert <dries@buytaert.net>2005-09-08 19:19:01 +0000
commit013b73e6ec851cea0e72312acce3abeb0cabd472 (patch)
tree69a5e724f11bebc6d588f5a56526b9ebec7e38fb /includes/bootstrap.inc
parent451dbd17a6317bf51bf9a39f5df25263a65b408f (diff)
downloadbrdo-013b73e6ec851cea0e72312acce3abeb0cabd472.tar.gz
brdo-013b73e6ec851cea0e72312acce3abeb0cabd472.tar.bz2
- Patch #30122 by m3verick: changed include_once()'s to include "./$file"
for performance's sake.
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index f29a9b6be..db111b428 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -460,7 +460,7 @@ function drupal_load($type, $name) {
$filename = drupal_get_filename($type, $name);
if ($filename) {
- include_once($filename);
+ include_once "./$filename";
$files[$type][$name] = TRUE;
return TRUE;