Fixed Camel case in data attribute for file_uploader

Chris D

XenForo developer
Staff member
This is pretty much a non-issue as the particular data-attribute isn't used in the JS but the HTML of the file_uploader template contains:

HTML:
data-uploaderId="{$uploaderId}"

If this was ever needed in the future, or indeed if an add-on extended and needed this, the attribute would be invalid.

Should be:
HTML:
data-uploaderid="{$uploaderId}"
 
Top Bottom