Andrew Welch
Andrew Welch
It has not been updated in 2.5 years because I have not been aware of any issues. Can you elaborate on how it is broken in Craft 4.15.2?
Sorry I did miss this one. I'll have a look at it today, I'm not sure if the issue lies with Minify, Webperf, or more likely a change in jsmin-php...
Same as: https://github.com/nystudio107/craft-webperf/issues/57
> The boomerang iframe loader script should be rendered without minification errors, or the problematic JavaScript should be escaped in a way that's compatible with JSMin. > > ### Versions...
Additional questions @bart-honcho @smcservices - Can you reproduce this issue in both local development in and production? For local development, ensure that `devMode` for Craft CMS is _off_ so that...
@bart-honcho okay thanks, let me know. If you do still experience it, please provide your PHP version as well.
@bart-honcho any luck?
So this is all the `get()` method does: ```php /** * Get a cookie */ public function get(string $name = ''): string { return $_COOKIE[$name] ?? ''; } ``` unclear...
According to this: https://www.php.net/manual/en/reserved.variables.cookies.php > PHP replaces dots (.) with underscores (_). To find all original cookie names (and value) you can use $_SERVER['HTTP_COOKIE']. So perhaps the code it should...
Related to: https://github.com/nystudio107/craft-retour/issues/339