diff options
author | Florin Peter <github@florin-peter.de> | 2013-06-03 23:41:57 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-06-03 23:41:57 +0200 |
commit | ef97481a0d7dcedba830bc423d623111f6c2e774 (patch) | |
tree | cb71bb2e9ba1917690926b5eb73368db04138148 /apps/files_encryption/files | |
parent | b46e7323ec6189f16405b8a22b073ca2d18d3bdb (diff) | |
download | nextcloud-server-ef97481a0d7dcedba830bc423d623111f6c2e774.tar.gz nextcloud-server-ef97481a0d7dcedba830bc423d623111f6c2e774.zip |
changed redirect handling
Diffstat (limited to 'apps/files_encryption/files')
-rw-r--r-- | apps/files_encryption/files/error.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php new file mode 100644 index 00000000000..3118299b519 --- /dev/null +++ b/apps/files_encryption/files/error.php @@ -0,0 +1,18 @@ +<?php +if (!isset($_)) { //also provide standalone error page + require_once '../../../lib/base.php'; + + $l = OC_L10N::get('files_encryption'); + + // check if ajax request + if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { + \OCP\JSON::error(array('data' => array('message' => $l->t('Your private key is not valid! Maybe the your password was changed from outside.')))); + } else { + header('HTTP/1.0 404 ' . $l->t('Your private key is not valid! Maybe the your password was changed from outside.')); + $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest'); + $tmpl->printPage(); + } + + exit; +} +?> |