summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-07 21:59:01 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-07 21:59:01 +0000
commit77b1624b3943efd9fdb54feef41bb5faebdbd9d6 (patch)
treeff629f97efe415c197a96273182911fef75f9941 /modules
parente115800d042d033516105cf92e0d1bf7c1dc6fc1 (diff)
downloadbrdo-77b1624b3943efd9fdb54feef41bb5faebdbd9d6.tar.gz
brdo-77b1624b3943efd9fdb54feef41bb5faebdbd9d6.tar.bz2
- Patch #902354 by pwolanin: Fixed Schema description is wrong for uri field in {file_managed()} table.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 1e110d880..e719e6bbb 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -770,14 +770,14 @@ function system_schema() {
'default' => 0,
),
'filename' => array(
- 'description' => 'Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.',
+ 'description' => 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'uri' => array(
- 'description' => 'Path of the file relative to Drupal root.',
+ 'description' => 'The URI to access the file (either local or remote).',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,