diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-08-26 10:37:12 +0100 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-08-26 10:37:12 +0100 |
commit | c96fb3799e233abe168bc8edd1bc9e1f47aa2f0b (patch) | |
tree | 8cf9bc034c0a3fac9446f39773eeb1e3f1e7c65f /modules | |
parent | aeb6712b36ef4c31db34bc9f0fea728ea39aa81f (diff) | |
download | brdo-c96fb3799e233abe168bc8edd1bc9e1f47aa2f0b.tar.gz brdo-c96fb3799e233abe168bc8edd1bc9e1f47aa2f0b.tar.bz2 |
- Patch #1193044 by Dave Reid: the [file:size] token may not always return in KB, despite description.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.tokens.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.tokens.inc b/modules/system/system.tokens.inc index 56ddf2988..a96142327 100644 --- a/modules/system/system.tokens.inc +++ b/modules/system/system.tokens.inc @@ -98,7 +98,7 @@ function system_token_info() { ); $file['size'] = array( 'name' => t("File size"), - 'description' => t("The size of the file, in kilobytes."), + 'description' => t("The size of the file."), ); $file['url'] = array( 'name' => t("URL"), |