Skip to content

Commit

Permalink
Merge pull request #150 from stesi561/master
Browse files Browse the repository at this point in the history
Adds directory to require_once calls.
  • Loading branch information
paragonie-security authored Sep 23, 2022
2 parents 345ce4c + faa03b4 commit 652aa37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoload-fast.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php

require_once 'autoload.php';
require_once DIRNAME(__FILE__) . '/autoload.php';
ParagonIE_Sodium_Compat::$fastMult = true;
2 changes: 1 addition & 1 deletion autoload-pedantic.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once 'autoload.php';
require_once dirname(__FILE__) . '/autoload.php';
define('DO_PEDANTIC_TEST', true);

ParagonIE_Sodium_Compat::$fastMult = true;

0 comments on commit 652aa37

Please sign in to comment.