Remove unnecessary htmlspecialchars
This commit is contained in:
parent
93187737fb
commit
c24d2b9b62
@ -257,7 +257,7 @@ class serendipity_plugin_remoterss extends serendipity_plugin {
|
||||
$propbag->add('description', PLUGIN_REMOTERSS_BLAHBLAH);
|
||||
$propbag->add('stackable', true);
|
||||
$propbag->add('author', 'Udo Gerhards, Richard Thomas Harrison');
|
||||
$propbag->add('version', '1.11');
|
||||
$propbag->add('version', '1.12');
|
||||
$propbag->add('requirements', array(
|
||||
'serendipity' => '0.8',
|
||||
'smarty' => '2.6.7',
|
||||
@ -571,7 +571,7 @@ class serendipity_plugin_remoterss extends serendipity_plugin {
|
||||
}
|
||||
|
||||
if ($blogrolling === true && (!empty($text) || !empty($url))) {
|
||||
$content .= '• <a href="' . htmlspecialchars($url) . '" ' . (!empty($target) ? 'target="'.$target.'"' : '') . ' title="' . $text . '">' . htmlspecialchars($text) . "</a>";
|
||||
$content .= '• <a href="' . htmlspecialchars($url) . '" ' . (!empty($target) ? 'target="'.$target.'"' : '') . ' title="' . $text . '">' . $text . "</a>";
|
||||
if (isset($item['isRecent'])) {
|
||||
$content .= ' <span style="color: Red; ">*</span>';
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user