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/aggregator/aggregator.install | |
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/aggregator/aggregator.install')
-rw-r--r-- | modules/aggregator/aggregator.install | 4 |
1 files changed, 2 insertions, 2 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', |