diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-08-12 17:38:57 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-08-12 17:38:57 +0200 |
commit | eb0fdc838015c794641d6630eb64ff9e1c2a47a4 (patch) | |
tree | c21824c230229cf25cb7b50dbb9f17832a6d12cf /apps/files_encryption/files | |
parent | 98f836363a1aee8dbc767068fcb357802f228cf2 (diff) | |
download | nextcloud-server-eb0fdc838015c794641d6630eb64ff9e1c2a47a4.tar.gz nextcloud-server-eb0fdc838015c794641d6630eb64ff9e1c2a47a4.zip |
provide correct path for require_once
Diffstat (limited to 'apps/files_encryption/files')
-rw-r--r-- | apps/files_encryption/files/error.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index f93c67d920a..afe604f8ecb 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -1,6 +1,6 @@ <?php if (!isset($_)) { //also provide standalone error page - require_once '../../../lib/base.php'; + require_once realpath(dirname(__FILE__) . '/../../../lib/base.php'); $l = OC_L10N::get('files_encryption'); |