diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-08 23:03:39 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-08 23:03:39 +0000 |
commit | 88a6e82db1657c8f39cb6338a3c511c50b1a70b4 (patch) | |
tree | 8f81cd38351a15d441ec8929f91f89ea59ff3e6c /modules | |
parent | a7f6efc8a14efb0a553aae313cb63ea404618add (diff) | |
download | brdo-88a6e82db1657c8f39cb6338a3c511c50b1a70b4.tar.gz brdo-88a6e82db1657c8f39cb6338a3c511c50b1a70b4.tar.bz2 |
#329998 by pwolanin: Remove unescaped <> chars from t() strings.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/aggregator/aggregator.install | 4 | ||||
-rw-r--r-- | modules/block/block.install | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/aggregator/aggregator.install b/modules/aggregator/aggregator.install index 7f672d948..baff792d6 100644 --- a/modules/aggregator/aggregator.install +++ b/modules/aggregator/aggregator.install @@ -144,13 +144,13 @@ function aggregator_schema() { 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('The parent website of the feed; comes from the <link> element in the feed.'), + 'description' => t('The parent website of the feed; comes from the <link> element in the feed.'), ), 'description' => array( 'type' => 'text', 'not null' => TRUE, 'size' => 'big', - 'description' => t("The parent website's description; comes from the <description> element in the feed."), + 'description' => t("The parent website's description; comes from the <description> element in the feed."), ), 'image' => array( 'type' => 'text', diff --git a/modules/block/block.install b/modules/block/block.install index 5abac2c60..25e8186a6 100644 --- a/modules/block/block.install +++ b/modules/block/block.install @@ -79,7 +79,7 @@ function block_schema() { 'length' => 64, 'not null' => TRUE, 'default' => '', - 'description' => t('Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)'), + 'description' => t('Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)'), ), 'cache' => array( 'type' => 'int', |