diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-04-12 08:42:47 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-04-12 08:42:47 +0000 |
commit | 69726b0d7b7741122ded6994692ff24173a7caee (patch) | |
tree | c64d5c91ffad08f10dbeb1e6e11a838284c1d1d3 /modules/system.module | |
parent | 99e7c0ec7c630dde981cb5ee7c046e71833cfd50 (diff) | |
download | brdo-69726b0d7b7741122ded6994692ff24173a7caee.tar.gz brdo-69726b0d7b7741122ded6994692ff24173a7caee.tar.bz2 |
#56634: Resolve issues with varying $base_url
- Fix locations links in watchdog
- Fix repeated subdirectory in page cache CIDs
Diffstat (limited to 'modules/system.module')
-rw-r--r-- | modules/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system.module b/modules/system.module index 08b40091d..8f2907882 100644 --- a/modules/system.module +++ b/modules/system.module @@ -673,7 +673,7 @@ function system_default_region($theme) { * An array of file objects of the specified type. */ function system_listing($mask, $directory, $key = 'name', $min_depth = 1) { - $config = conf_init(); + $config = conf_path(); $searchdir = array($directory); $files = array(); |