Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Basic VIP Enterprise Search Adapter #8

Merged
merged 13 commits into from
Apr 28, 2022
Prev Previous commit
Next Next commit
Revert "Fix lib path in autoloader"
This reverts commit 2d4e8ad.
  • Loading branch information
kevinfodness committed Mar 30, 2022
commit 770f68cbccde0dd4d4eee9bd7ef5bff8335b62db
2 changes: 1 addition & 1 deletion lib/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function autoload( string $class ) {
$dirs = explode( '\\', $class );
$class = array_pop( $dirs );

require_once __DIR__ . '/lib/' . implode( '/', $dirs ) . '/class-' . $class . '.php';
require_once __DIR__ . '/' . implode( '/', $dirs ) . '/class-' . $class . '.php';
}

spl_autoload_register( '\Elasticsearch_Extensions\autoload' );