Skip to content
Snippets Groups Projects
Commit 2a11f04e authored by Ingmar Schlecht's avatar Ingmar Schlecht
Browse files

* Fixed bug #88: fe_adminLib htmlspecialchars() issue

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/branches/TYPO3_3-6-0@301 709f56b5-9817-0410-a4d7-c38de5d9e867
parent aacea5d7
No related merge requests found
2004-05-17 Ingmar Schlecht <ingmars@web.de>
* Fixed bug #88: fe_adminLib.inc issue
2004-05-11 Ingmar Schlecht <ingmar@ingmar_lap>
* Changed version number to 3.6.1 in t3lib/config_default.php
......
......@@ -1660,7 +1660,8 @@ class user_feAdmin {
$recCopy[$fieldName]=$fieldValue;
}
$string.='&aC='.$this->setfixedHash($recCopy,$data['_FIELDLIST']);
$markerArray['###SYS_SETFIXED_'.$theKey.'###'] = htmlspecialchars($string);
$markerArray['###SYS_SETFIXED_'.$theKey.'###'] = $string;
$markerArray['###SYS_SETFIXED_HSC_'.$theKey.'###'] = htmlspecialchars($string);
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment