* Fixed bug #5949: BE-Shortcut to Tools->User Admin returns error (Thanks to Oliver Hader)
* Fixed bug #6210: UserTSConfig value "options.moduleMenuCollapsable=0" does not work.
* Fixed bug #6071: Switch to User does not work from context menu in List Module. (Thanks to Christian Kuhn all patches above!)
+ * Fixed bug #6553: Remove hardcoded strip_tags() from image altText and replacing it with TS stripHtml = 1 (Thanks to Georg Ringer)
* Fixed bug: stdWrap for imgMax is not taken into account. (Thanks to Helmut Hummel)
2007-10-19 Stanislas Rolland <stanislas.rolland@fructifor.ca>
$longDesc = trim($this->stdWrap($conf['longdescURL'],$conf['longdescURL.']));
// "alt":
- $altParam = ' alt="'.htmlspecialchars(strip_tags($altText)).'"';
+ $altParam = ' alt="'.htmlspecialchars($altText).'"';
// "title":
$emptyTitleHandling = 'useAlt';
$emptyTitleHandling = $conf['emptyTitleHandling'];
}
if ($titleText || $emptyTitleHandling == 'keepEmpty') {
- $altParam.= ' title="'.htmlspecialchars(strip_tags($titleText)).'"';
+ $altParam.= ' title="'.htmlspecialchars($titleText).'"';
} elseif (!$titleText && $emptyTitleHandling == 'useAlt') {
- $altParam.= ' title="'.htmlspecialchars(strip_tags($altText)).'"';
+ $altParam.= ' title="'.htmlspecialchars($altText).'"';
}
// "longDesc" URL