Jaxel
Well-known member
I have an upload row in my addon:
And then in php:
As you can see, it accepts multiple files. However, something I have noticed is that if I select 35 files to upload, only the first 20 files are included in
How can I fix this?
Code:
<xf:uploadrow name="uploads[]" label="{{ phrase('image') }}"
multiple="true" accept=".gif,.jpeg,.jpg,.jpe,.png" />
Code:
$uploads = $this->request->getFile('uploads', true, false);
$uploads
.How can I fix this?