You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens because (at least on newer CMS versions) the colorpicker widget forces the color value to be uppercase and the validation rule for the background color is the following regex:
/^#([a-f0-9]{3}){1,2}$/
which need only be changed to one of:
/^#([a-fA-F0-9]{3}){1,2}$/ or /^#([a-f0-9]{3}){1,2}$/i
This happens because (at least on newer CMS versions) the colorpicker widget forces the color value to be uppercase and the validation rule for the background color is the following regex:
/^#([a-f0-9]{3}){1,2}$/
which need only be changed to one of:
/^#([a-fA-F0-9]{3}){1,2}$/
or/^#([a-f0-9]{3}){1,2}$/i
in the file classes/Resizer.php
The text was updated successfully, but these errors were encountered: