mattrogowski
Well-known member
- Affected version
- 2.3.2
Very minor issue but the
just needs to be:
Then it accepts 2 and rejects a 3rd.
Strangely the check above works with
unassociatedAttachmentLimit config value actually accepts 1 less than the limit. Easier to test if you set $config['unassociatedAttachmentLimit'] = 2;, you get the error after uploading 1 attachment instead of 2.src/XF/Attachment/Manipulator.php:140:$allowed = ($uploaded < $unassociatedLimit);just needs to be:
$allowed = ($uploaded <= $unassociatedLimit);Then it accepts 2 and rejects a 3rd.
Strangely the check above works with
<, can't immediately work out why one check works and the other doesn't.
Last edited:

