I added a check if baseURI was null, and if not, handle it. This causes an issue where baseURI is empty, because the if ($string) check returns false if $string is empty. Because users' BaseURI was empty, we never set it to the default /, causing this issue.
Fixes #351.
I added a check if baseURI was null, and if not, handle it. This causes an issue where baseURI is empty, because the
if ($string)
check returns false if$string
is empty. Because users' BaseURI was empty, we never set it to the default/
, causing this issue.