blekerfeld / donut

Donut, dictionary toolkit
MIT License
9 stars 3 forks source link

No such file or directory - Dispatch.php #22

Closed nedroden closed 7 years ago

nedroden commented 7 years ago

Hello,

code/classes/dispatcher.cset.php contains a line that calls for a file named "code/Dispatch.php", but on case-sensitive server configurations that would throw an error.

In code/classes/dispatch.cset.php, replacing

$this->_dispatchData = require_once p::FromRoot("code/Dispatch.php");

with

$this->_dispatchData = require_once p::FromRoot("code/dispatch.php");

solves the problem.

blekerfeld commented 7 years ago

Thanks for noticing, it will be fixed! :)