diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-15 13:01:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-15 13:01:11 +0000 |
commit | 15671f471b5097fd20c5951a9c835de9bb05fc5b (patch) | |
tree | b3b22b4f670da5c6880cadb593eae285bf623995 /modules/update/update.install | |
parent | 97fdc491917f6f12d734cb13bf2101cfc12096fd (diff) | |
download | brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2 |
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/update/update.install')
-rw-r--r-- | modules/update/update.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.install b/modules/update/update.install index 001dd7c7a..95208ccb7 100644 --- a/modules/update/update.install +++ b/modules/update/update.install @@ -36,7 +36,7 @@ function update_uninstall() { */ function update_schema() { $schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache'); - $schema['cache_update']['description'] = t('Cache table for the Update module to store information about available releases, fetched from central server.'); + $schema['cache_update']['description'] = 'Cache table for the Update module to store information about available releases, fetched from central server.'; return $schema; } |