Skip to content

Commit

Permalink
Update wpAuth0.php
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Dec 11, 2023
1 parent 956d088 commit 00326a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wpAuth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
}

// Load dependencies
if (is_file($file = plugin_dir_path(__FILE__) . 'vendor/autoload.php')) {
require_once $file;
if (file_exists(plugin_dir_path(__FILE__) . '/vendor/autoload.php')) {
require_once plugin_dir_path(__FILE__) . '/vendor/autoload.php';
}

register_activation_hook(
Expand Down

0 comments on commit 00326a1

Please sign in to comment.