summaryrefslogtreecommitdiff
path: root/modules/block/block.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
committerDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
commit15671f471b5097fd20c5951a9c835de9bb05fc5b (patch)
treeb3b22b4f670da5c6880cadb593eae285bf623995 /modules/block/block.install
parent97fdc491917f6f12d734cb13bf2101cfc12096fd (diff)
downloadbrdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz
brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/block/block.install')
-rw-r--r--modules/block/block.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.install b/modules/block/block.install
index 0a7fda73f..8832430b4 100644
--- a/modules/block/block.install
+++ b/modules/block/block.install
@@ -163,7 +163,7 @@ function block_schema() {
);
$schema['cache_block'] = drupal_get_schema_unprocessed('system', 'cache');
- $schema['cache_block']['description'] = t('Cache table for the Block module to store already built blocks, identified by module, delta, and various contexts which may change the block, such as theme, locale, and caching mode defined for the block.');
+ $schema['cache_block']['description'] = 'Cache table for the Block module to store already built blocks, identified by module, delta, and various contexts which may change the block, such as theme, locale, and caching mode defined for the block.';
return $schema;
}