afbora / kirby-blade

Enable Laravel Blade Template Engine for Kirby 3
MIT License
20 stars 7 forks source link

Fix `doMakeSameDomainsLinksRelative` causing `TypeError` #25

Closed S1SYPHOS closed 2 years ago

S1SYPHOS commented 2 years ago

doMakeSameDomainsLinksRelative only takes string and array values, but src/Template.php casts $status to being bool which in turn leads to the TypeError being described in #23 - the proposed code checks for these and applies doMakeSameDomainsLinksRelative if everything's okay.

Fixes #23

S1SYPHOS commented 2 years ago

It's no beauty, but it does the job ..