Skip to content
Snippets Groups Projects
Commit a39b5cfa authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

use htmlentities for html attribute

parent 3e6545f9
Branches
No related tags found
No related merge requests found
......@@ -16,9 +16,9 @@ if (is_array($aIdplist) && count($aIdplist)) {
$sOut .= '
<a href="' . $aEntry['_url']. '"
class="idp"
title="' . $aEntry['_description'] . '"
>' . $aEntry['_label'] . '<br>
<span class="hidden">' . $aEntry['_description'] . ' ' . $aEntry['_keywords'] . ' .'. $aEntry['_tld'] . '</span>
title="' . str_replace('"', '',$aEntry['_description']) . '"
>' . htmlentities($aEntry['_label']) . '<br>
<span class="hidden">' . str_replace('"', '', $aEntry['_description'] . ' ' . $aEntry['_keywords']) . ' .'. $aEntry['_tld'] . '</span>
<img src="' . $aEntry['_image'] . '"><br>
</a>
'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment