Merge branch 'ent-5538-redireccion-incorrecta-en-pantalla-sin-permisos' into 'develop'

fixed error

See merge request artica/pandorafms!3143
This commit is contained in:
Daniel Rodriguez 2020-05-12 12:56:27 +02:00
commit bc794918d4
1 changed files with 5 additions and 2 deletions

View File

@ -136,8 +136,11 @@ font-size:10pt;
<div class='modalcontenttex'>
<?php
echo __('Access to this page is restricted to authorized users only, please contact system administrator if you need assistance.');
echo '<br/> <br/>';
echo __('Please know that all attempts to access this page are recorded in security logs of %s System Database', get_product_name());
echo '<br/> <br/>';
echo __('Please know that all attempts to access this page are recorded in security logs of %s System Database', get_product_name());
if ($config['logged'] == false) {
session_destroy();
}
?>
</div>