Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Prevent double encoding of ting titles.
Values are already escaped during the processing and so let l() know this.
  • Loading branch information
kasperg committed Dec 22, 2011
1 parent efbaeca commit f8da08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ting-list-item.tpl.php
Expand Up @@ -16,7 +16,7 @@

<div class="info">
<span class='date'><?php print $ting_publication_date; ?></span>
<h3><?php print l($ting_title, $ting_url); ?></h3>
<h3><?php print l($ting_title, $ting_url, array('html' => true)); ?></h3>

<?php if (!empty($ting_creators_links)) { ?>
<em><?php echo t('by'); ?></em>
Expand Down

0 comments on commit f8da08d

Please sign in to comment.