Problem/Motivation
- Fix proper escaping by adding regex delimiter as the second argument
https://git.drupalcode.org/project/cloud/-/blob/4.x/modules/cloud_servic...
BEFORE:
$regex = '/\.(' . preg_replace('/ +/', '|', preg_quote($extensions)) . ')$/i';
AFTER:
$regex = '/\.(' . preg_replace('/ +/', '|', preg_quote($extensions, NULL)) . ')$/i';
Issue fork cloud-3241224
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
yas@masami
Could you please review the patch? Thanks!
Comment #4
yas@masami
Thank you for your review. I applied your suggestion, so could you please check the patch again? Thanks!
Comment #5
masami commented@yas
It looks good to me now, so I change the status to RTBC.
Comment #6
yas@masami
Thank you for your review. I'll merge the patch to
4.xand close this issue as Fixed.Comment #9
yas