2008-04-20 Ingmar Schlecht <ingmar@typo3.org>
* Fixed bug #8138: Search in Loaded Extensions not working (Thanks to Steffen Kamper)
+ * Fixed bug #8019: missing htmlspecialchars() in adminPanel (Thanks to Steffen Kamper)
2008-04-20 Ingo Renner <ingo@typo3.org>
$depth = $this->extGetFeAdminValue('cache','clearCacheLevels');
$outTable = '';
$this->extPageInTreeInfo = array();
- $this->extPageInTreeInfo[] = array($GLOBALS['TSFE']->page['uid'],$GLOBALS['TSFE']->page['title'],$depth+1);
+ $this->extPageInTreeInfo[] = array($GLOBALS['TSFE']->page['uid'],htmlspecialchars($GLOBALS['TSFE']->page['title']),$depth+1);
$this->extGetTreeList($GLOBALS['TSFE']->id, $depth,0,$this->getPagePermsClause(1));
reset($this->extPageInTreeInfo);
while(list(,$row)=each($this->extPageInTreeInfo)) {
$depth = $this->extGetFeAdminValue('publish','levels');
$outTable = '';
$this->extPageInTreeInfo = array();
- $this->extPageInTreeInfo[] = array($GLOBALS['TSFE']->page['uid'],$GLOBALS['TSFE']->page['title'],$depth+1);
+ $this->extPageInTreeInfo[] = array($GLOBALS['TSFE']->page['uid'],htmlspecialchars($GLOBALS['TSFE']->page['title']),$depth+1);
$this->extGetTreeList($GLOBALS['TSFE']->id, $depth,0,$this->getPagePermsClause(1));
reset($this->extPageInTreeInfo);
while(list(,$row)=each($this->extPageInTreeInfo)) {