pass incoming Technorati links through wptexturize(). Props Nazgul. fixes: #2856
git-svn-id: http://svn.automattic.com/wordpress/trunk@4295 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2c775dede6
commit
764fca95fd
|
@ -26,7 +26,7 @@ if ( isset($rss->items) && 0 != count($rss->items) ) {
|
||||||
$rss->items = array_slice($rss->items, 0, 10);
|
$rss->items = array_slice($rss->items, 0, 10);
|
||||||
foreach ($rss->items as $item ) {
|
foreach ($rss->items as $item ) {
|
||||||
?>
|
?>
|
||||||
<li><a href="<?php echo wp_filter_kses($item['link']); ?>"><?php echo wp_specialchars($item['title']); ?></a></li>
|
<li><a href="<?php echo wp_filter_kses($item['link']); ?>"><?php echo wptexturize(wp_specialchars($item['title'])); ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue