Skip to content

Commit

Permalink
Merge pull request #18 from open-sausages/pulls/2.0/fix-bootstrap
Browse files Browse the repository at this point in the history
Fix broken bootstrap autoload
  • Loading branch information
flamerohr authored Oct 9, 2017
2 parents fd3adaf + d1ab01b commit 17b8266
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/server-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
* framework.
*/

require_once('constants.php');
require_once 'constants.php';
require_once BASE_PATH . '/vendor/autoload.php';

// Include a bootstrap file (e.g. if you need extra settings to get a module started)
if (getenv('SERVE_BOOTSTRAP_FILE')) {
Expand Down

0 comments on commit 17b8266

Please sign in to comment.