parent
b46e7323ec
commit
ef97481a0d
@ -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; |
||||
} |
||||
?> |
@ -0,0 +1,10 @@ |
||||
<ul> |
||||
<li class='error'> |
||||
<?php $location = \OC_Helper::linkToRoute( "settings_personal" ) ?> |
||||
|
||||
<?php p($l->t('Your private key is not valid! Maybe the your password was changed from outside.')); ?> |
||||
<br/> |
||||
<?php p($l->t('You can unlock your private key in your ')); ?> <a href="<?php echo $location?>"><?php p($l->t('personal settings')); ?>.</a>
|
||||
<br/> |
||||
</li> |
||||
</ul> |
Loading…
Reference in new issue