diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-21 12:33:32 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-21 12:33:32 +0200 |
commit | 9d324db05481620fd9a6883c1315e0b31fc21c45 (patch) | |
tree | 1f2e568ebe5da2ba58cb9ef51f6ea446daa82480 /apps | |
parent | 4c27c7e1994e863926edaad6e682b3f889075e2f (diff) | |
download | nextcloud-server-9d324db05481620fd9a6883c1315e0b31fc21c45.tar.gz nextcloud-server-9d324db05481620fd9a6883c1315e0b31fc21c45.zip |
fix path to 3rdparty apps
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_encryption/lib/crypt.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 8ff9fc5ff5b..1a5c9300a27 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -25,7 +25,8 @@ namespace OCA\Encryption;
-require_once '../3rdparty/Crypt_Blowfish/Blowfish.php';
+//require_once '../3rdparty/Crypt_Blowfish/Blowfish.php';
+require_once realpath(dirname(__FILE__) . '/../3rdparty/Crypt_Blowfish/Blowfish.php');
/**
* Class for common cryptography functionality
|