[TYPO3-german] FEUSER grundsätzliche Probleme bei der Anmeldung
Oliver Klee
typo3-german-02 at oliverklee.de
Fri Oct 16 10:35:41 CEST 2009
Hi,
Christian Welzel schrieb:
> Ich habe schon sehr oft gesehen, dass Mailtools der Meinung sind,
> dass ein Link am [ aufhört. Hast du also einen Link wie
> http://server/seite/?param[foo]=1, dann übermittelt das Mailprogramm
> nur http://server/seite/?param an den Browser/Server.
Das Problem hatte ich bei meiner Extension "seminars" auch. Ich habe das
dadurch gelöst, dass ich die [ und ] korrekt kodiert habe:
// XXX We need to do this workaround of manually encoding brackets in
// the URL due to a bug in the TYPO3 core:
// http://bugs.typo3.org/view.php?id=3808
$result = preg_replace(
array('/\[/', '/\]/'),
array('%5B', '%5D'),
$result
);
Oliver
More information about the TYPO3-german
mailing list