[TYPO3-core] RFC #16891: Bug: shopic.php causes a fatal error if parameters GET variable is not an array
Franz Holzinger
franz at ttproducts.de
Mon Jan 3 10:59:54 CET 2011
Hello Helmut,
this line could be a problem:
$this->parametersEncoded = implode($parametersArray);
Please add :
if (isset($parametersArray) && is_array($parametersArray)) {
$this->parametersEncoded = implode($parametersArray);
}
I have already read of such an issue.
Regards,
Franz
More information about the TYPO3-team-core
mailing list