|
|
|
@ -4,6 +4,10 @@ if (!isset($_)) { //also provide standalone error page |
|
|
|
|
|
|
|
|
|
$l = OC_L10N::get('files_encryption'); |
|
|
|
|
|
|
|
|
|
if(isset($_GET['p']) && $_GET['p'] === '1') { |
|
|
|
|
header('HTTP/1.0 404 ' . $l->t('Your private key is not valid! Maybe the your password was changed from outside.')); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 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.')))); |
|
|
|
|