Actions
Bug #55645
closedAdd wizard redirects to original form if PID larger zero
Start date:
2014-02-04
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.4
Tags:
Complexity:
easy
Is Regression:
Yes
Sprint Focus:
Description
The add_wizard.php
script will always redirect the user back to the original form if a PID larger than zero is used.
This bug was introduced with https://review.typo3.org/25843/ because an invalid condition is used:
if ($this->pid > 0) { HttpUtility::redirect(GeneralUtility::sanitizeLocalUrl($this->P['returnUrl'])); }
should be
if ($this->pid !== '') { HttpUtility::redirect(GeneralUtility::sanitizeLocalUrl($this->P['returnUrl'])); }
which it was before.
Updated by Alexander Stehlik almost 11 years ago
Sorry, I mean
$this->pid === ''
Updated by Gerrit Code Review almost 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27316
Updated by Wouter Wolters over 10 years ago
- Status changed from Under Review to Closed
Duplicate of http://forge.typo3.org/issues/56248
Actions