summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-08-18 13:18:45 +0200
committerwebchick <webchick@24967.no-reply.drupal.org>2012-08-18 13:18:45 +0200
commitdc2900bb1f42df828927f9fc4d8235ca058f0aa5 (patch)
tree53ef927e7f9b573f1f115b13e4d40121d07d7455 /includes/theme.inc
parentec12b314fac08e638ff4ed152cb7412739941166 (diff)
downloadbrdo-dc2900bb1f42df828927f9fc4d8235ca058f0aa5.tar.gz
brdo-dc2900bb1f42df828927f9fc4d8235ca058f0aa5.tar.bz2
Issue #1211668 by scito, Devin Carlson, bornholtz: Fixed Special characters are encoded twice for feed icon attribute title.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index c4b712271..79750afe4 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -2128,7 +2128,7 @@ function theme_more_help_link($variables) {
* - title: A descriptive title of the feed.
*/
function theme_feed_icon($variables) {
- $text = t('Subscribe to @feed-title', array('@feed-title' => $variables['title']));
+ $text = t('Subscribe to !feed-title', array('!feed-title' => $variables['title']));
if ($image = theme('image', array('path' => 'misc/feed.png', 'width' => 16, 'height' => 16, 'alt' => $text))) {
return l($image, $variables['url'], array('html' => TRUE, 'attributes' => array('class' => array('feed-icon'), 'title' => $text)));
}