Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/ZF2-439' of https://github.com/mediacabinet/zf2
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Encrypt.php
Expand Up @@ -72,7 +72,7 @@ public function setAdapter($options = null)
$options = array();
}

if (stream_resolve_include_path('Zend/Filter/Encrypt/' . ucfirst($adapter). '.php')) {
if (file_exists(__DIR__ . '/Encrypt/' . ucfirst($adapter) . '.php')) {
$adapter = 'Zend\\Filter\\Encrypt\\' . ucfirst($adapter);
}

Expand Down

0 comments on commit 62799e5

Please sign in to comment.