* (feature) Add new external library "RemoveXSS" for easily filtering potential Cross Site Scripting (XSS) attacks. Can be used by any script. Usage: $filtered_string = t3lib_div::removeXSS($input_string); Thanks to Travis Puderbaugh <kallahar@quickwired.com> for providing this nice piece of code!
* (minor) Fixed bug #6138: Prevent recursive inclusion of external TypoScript files (patch by Martin Ficzel)
- * (minor) Don't output objects in t3lib_div::debug() - send a plaintext placeholder instead
+ * (minor) Don't output objects in t3lib_div::debug() - send a plain text info instead
2007-10-13 Ingo Renner <ingo@typo3.org>
2007-10-09 Benjamin Mack <mack@xnos.org>
- * (tweak) No selection for TCEForms groups with max. one option needed
+ * (tweak) No selection for TCEForms groups with max. one option needed
2007-10-09 Dmitry Dulepov <dmitry@typo3.org>
if (is_array($array_in[$key])) {
$result.=t3lib_div::view_array($array_in[$key]);
} elseif (is_object($array_in[$key])) {
- $result.= '[Object]';
+ $result.= '<font face="Verdana,Arial" size="1">[Object '.get_class($array_in[$key]).']</font>';
} else {
$result.= '<font face="Verdana,Arial" size="1" color="red">'.nl2br(htmlspecialchars((string)$val)).'<br /></font>';
}