summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-09-02 11:36:20 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2013-09-02 11:36:20 +0200
commit6572ca811fc56c71b4efc970668741630acbd63c (patch)
tree061d35e5835f4cf21bc279006d36dff51315273c /apps/files_encryption
parent5e508f1ccbd3b83ed11f7eab35fea43e1583caf3 (diff)
downloadnextcloud-server-6572ca811fc56c71b4efc970668741630acbd63c.tar.gz
nextcloud-server-6572ca811fc56c71b4efc970668741630acbd63c.zip
error.php no longer needed
Diffstat (limited to 'apps/files_encryption')
-rw-r--r--apps/files_encryption/files/error.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php
deleted file mode 100644
index 7a2bb1a2811..00000000000
--- a/apps/files_encryption/files/error.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-if (!isset($_)) { //also provide standalone error page
- require_once __DIR__ . '/../../../lib/base.php';
-
- $l = OC_L10N::get('files_encryption');
-
- $errorMsg = $l->t('Your private key is not valid! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app. If this doesn\'t help maybe your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.');
-
- if(isset($_GET['p']) && $_GET['p'] === '1') {
- header('HTTP/1.0 404 ' . $errorMsg);
- }
-
- // 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' => $errorMsg)));
- } else {
- header('HTTP/1.0 404 ' . $errorMsg);
- $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest');
- $tmpl->printPage();
- }
-
- exit;
-}