Skip to content
Snippets Groups Projects
Commit c04f0d42 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Adding translation of which SP you arrived from (iframe SLO)

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@836 44740490-163a-0410-bde0-09ae8108e29a
parent 7e441a9b
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,13 @@ for (j=1; j<=10; j++) { ...@@ -20,8 +20,13 @@ for (j=1; j<=10; j++) {
?> ?>
<div id="content"> <div id="content">
<?php
<p>You have initiated a <strong>global logout</strong> from the service <strong><?php echo $this->data['requesterName']; ?></strong>. Global logout means you will be logged out from all services connected to this identity provider. This page will show the status of the logout proccess for all of the services you are logged into.</p>
$requestername = is_array($this->data['requesterName']) ?
$this->getTranslation($this->data['requesterName']) : $this->data['requesterName'];
?>
<p>You have initiated a <strong>global logout</strong> from the service <strong><?php echo $requestername; ?></strong>. Global logout means you will be logged out from all services connected to this identity provider. This page will show the status of the logout proccess for all of the services you are logged into.</p>
<?php <?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment