diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-17 12:12:26 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-17 12:12:26 -0700 |
commit | 409db6b29916ee8099b5165d327c538c488967f6 (patch) | |
tree | 42527ba496eeffa5b0ab2a14242406dca4df1839 /modules/system/system.install | |
parent | 8281aa22df7579718f8ea0a0a64345de0cd78430 (diff) | |
download | brdo-409db6b29916ee8099b5165d327c538c488967f6.tar.gz brdo-409db6b29916ee8099b5165d327c538c488967f6.tar.bz2 |
Issue #1742958 by DamienMcKenna: Fix capitalization of URL and other acronyms
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 220dfee24..d468b05e2 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2793,7 +2793,7 @@ function system_update_7061(&$sandbox) { $scheme = file_default_scheme() . '://'; foreach ($node_revisions as $vid => $revision) { foreach ($revision['file'][LANGUAGE_NONE] as $delta => $file) { - // We will convert filepaths to uri using the default scheme + // We will convert filepaths to URI using the default scheme // and stripping off the existing file directory path. $file['uri'] = $scheme . preg_replace('!^' . preg_quote($basename) . '!', '', $file['filepath']); $file['uri'] = file_stream_wrapper_uri_normalize($file['uri']); |