Actions
Bug #65252
closedrecordlist ElementBrowser not passing bparams
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2015-02-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
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....
Actions