Christian Taylor
Christian Taylor
I've encounter this on 4.6.0 too.
> I don't know if using `[]` in id's is semantically correct from an HTML perspective? The HTML5 spec is surprisingly lax, it seems that the only restriction is that...
@driesvints any preference on what this "dot name" helper should be named? I also considered using "session key".
I took a stab at refactoring the `dotName` property into a helper. I landed on adding a `Str::dot()` macro to `Illuminate\Support\Str` does that feel ok or should we just make...
I just replaced a `webfont.js` script with your code and there's a significant improvement in loading times. thanks!
I think this could solve issue #43 as well
I was able to display a view by throwing an Exception inside the login event. ```php // app/Exceptions/SsoAuthenticationException.php namespace App\Exceptions; use Illuminate\Auth\AuthenticationException; class SsoAuthenticationException extends AuthenticationException { } ``` ```php...
I just ran into this too after the same upgrade. I dunno if it matters but I'm using the S3 driver.
The Glide Tag is using the cache path set by the CMS config instead of the SSG config here: https://github.com/statamic/cms/blob/e69c1f434acc4a267832dc20ea7397ea1623bb34/src/Tags/Glide.php#L110. In order to fix this the SSG plugin needs to...
Yep, I'm pretty sure that's what's going on. If I add this [after line 101 in Glide.php](https://github.com/statamic/ssg/blob/612bb55953617b54dc68a26fc3b8869a8e70c6fc/src/Generator.php#L102). SSG starts working again for me. ``` config([ 'statamic.assets.image_manipulation.cache' => true, 'statamic.assets.image_manipulation.cache_path' =>...