Skip to content

Commit

Permalink
MDL-32230 block_rss_client: remove extra cleaning step
Browse files Browse the repository at this point in the history
  • Loading branch information
mackensen authored and stronk7 committed Sep 17, 2012
1 parent b18816b commit 4f54f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/rss_client/block_rss_client.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function get_item_html($item){

$r = html_writer::start_tag('li');
$r.= html_writer::start_tag('div',array('class'=>'link'));
$r.= html_writer::link(clean_param($link,PARAM_URL), s($title), array('onclick'=>'this.target="_blank"'));
$r.= html_writer::link($link, s($title), array('onclick'=>'this.target="_blank"'));
$r.= html_writer::end_tag('div');

if($this->config->display_description && !empty($description)){
Expand Down

0 comments on commit 4f54f20

Please sign in to comment.