Project

General

Profile

Bug #65252

Updated by Anja Leichsenring about 9 years ago

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....

Back