Upgrade 1.12.12 -> 1.12.18 broke Cryogen's use of file:some/relative/dir
holyjak opened this issue · 2 comments
Cryogen sets the Selmer custom path like this
to point to ./themes/<theme name>
. The problem is that after upgrade to .18 this stopped working having the desired effect, likely due to
Line 173 in 12c0844
which previously wasn't so strict and did accept file:
without a leading \
:
Line 169 in 0503ca3
I do not know Selmer well enough to understand whether it is a defect there or (more likely) it used to work only by accident (since file:relative/path/..
does look wrong to me). So this is mainly to notify you that some users might run into the issue with this "patch" version change...
Looks like the way Cryogen sets custom path should be updated to create a string that can be parsed by URL
.
thank you, fixed!