Fixes #1511 fetch filedetails for webservice requests
Merge request reports
Activity
Filter activity
mentioned in commit 5b0953b2
1291 1291 $fileName = $fileData['name']; 1292 1292 $fileType = $fileData['type']; 1293 1293 $fileName = html_entity_decode($fileName, ENT_QUOTES, vglobal('default_charset')); 1294 $filenamewithpath = $fileData['path'].'_'.$fileData['encName']; 1294 $filenamewithpath = $fileData['path'].$fileData['attachmentsid'].'_'.$fileData['storedname']; @uma.s What happens if it $fileData is an from an older document record? $fileData['storedname'] will be null surely?
Please register or sign in to reply