[TYPO3-core] FYI72: Fix bug #12623: Validation issues in sysext scheduler: Fix several errors

Steffen Kamper info at sk-typo3.de
Tue Nov 17 22:09:34 CET 2009


Hi,

Francois Suter schrieb:
> Hi,
> 
> Looks globally good. Nice catches on some stuff.
> 
>> - Quote & to ampersands in links
> 
> I'm not sure why that is necessary actually, although there's been a lot 
> of talk about it recently. It's about XHTML compatibility, right?
> 

it's important for getting valid document. Especially IE users could be 
nerved by automatic switching to compatibility mode, and then they are 
logged out.

btw - this is the wrong way:
$link = $GLOBALS['MCONF']['_'] . '&SET[function]=check&CMD=user';

this is the right way:

$link = htmlspecialchars($GLOBALS['MCONF']['_'] . 
'&SET[function]=check&CMD=user');

vg Steffen


More information about the TYPO3-team-core mailing list