diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/file.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/file.inc b/includes/file.inc index bf4996567..dc31859db 100644 --- a/includes/file.inc +++ b/includes/file.inc @@ -657,7 +657,7 @@ function file_unmanaged_copy($source, $destination = NULL, $replace = FILE_EXIST * Given a relative path, construct a URI into Drupal's default files location. */ function file_build_uri($path) { - $uri = variable_get('file_scheme_default', 'public') . '://' . $path; + $uri = variable_get('file_default_scheme', 'public') . '://' . $path; return file_stream_wrapper_uri_normalize($uri); } |