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