Bug #65252
closedrecordlist ElementBrowser not passing bparams
0%
Description
TYPO3 version 6.2.9, recordlist extension , file ElementBrowser.php.
The bparams is always empty , after uploading the file , these is js error and the uploaded file can not be selected.
I found it is redirect url problem in function uploadForm():
$redirectValue = $this->getThisScript() . 'act=' . $this->act . '&mode=' . $this->mode
. '&expandFolder=' . rawurlencode($folderObject->getCombinedIdentifier())
. '&bparams=' . rawurlencode($this->bparams);
I just changed it to $redirectValue = $_SERVER['REQUEST_URI'];
everything is fine, but not sure how to fix it....
Updated by Anja Leichsenring over 9 years ago
- Subject changed from Typo3 6.2.9 to recordlist ElementBrowser not passing bparams
- Description updated (diff)
Updated by Wouter Wolters over 9 years ago
- Status changed from New to Needs Feedback
This is resolved in master and 6.2 branch by Nicole and me.
Can you check master branch or the 6.2 branch?
See https://forge.typo3.org/issues/65027
and https://forge.typo3.org/issues/65074
Updated by Alexander Opitz over 9 years ago
- Status changed from Needs Feedback to Closed
Thanks for feedback.