Skip to content

Commit

Permalink
Fixes include of vendor/autoload.php in fcgiget
Browse files Browse the repository at this point in the history
  • Loading branch information
hollodotme committed Jan 3, 2017
1 parent 64ab256 commit b9a4490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/fcgiget
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ if ( file_exists( __DIR__ . '/../vendor/autoload.php' ) )
{
require(__DIR__ . '/../vendor/autoload.php');
}
elseif ( file_exists( __DIR__ . '/../autoload.php' ) )
elseif ( file_exists( __DIR__ . '/../../../autoload.php' ) )
{
require(__DIR__ . '/../autoload.php');
require(__DIR__ . '/../../../autoload.php');
}
else
{
Expand Down

0 comments on commit b9a4490

Please sign in to comment.