diff --git a/dictionaries/status.definition.json b/dictionaries/status.definition.json index 09942ff4b95c87c1d2fd6b26196e484f2283e4f6..492f754c58cf53bdebf18b4fe4f42573e9b58394 100644 --- a/dictionaries/status.definition.json +++ b/dictionaries/status.definition.json @@ -15,7 +15,7 @@ "en": "Some error occurred" }, "intro": { - "en": "Hi, this is the status page of simpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that is attached to your session." + "en": "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." }, "validfor": { "en": "Your session is valid for %SECONDS% seconds from now." diff --git a/templates/status.php b/templates/status.php index 401f2e823ccd7bafa50faa65ba906b27448cb40c..9f369d6990c435adedaf92874cd22ebba840f641 100644 --- a/templates/status.php +++ b/templates/status.php @@ -25,7 +25,7 @@ if(isset($this->data['sessionsize'])) { <h2><?php echo($this->t('{status:attributes_header}')); ?></h2> <?php -// consent style listng start +// consent style listing start $attributes = $this->data['attributes']; function present_list($attr) { @@ -59,7 +59,8 @@ function present_attributes($t, $attributes, $nameParent) { $alternate = array('odd', 'even'); $i = 0; $parentStr = (strlen($nameParent) > 0)? strtolower($nameParent) . '_': ''; - $str = (strlen($nameParent) > 0)? '<table class="attributes">': '<table id="table_with_attributes" class="attributes">'; + $str = (strlen($nameParent) > 0)? '<table class="attributes" summary="attribute overview">': + '<table id="table_with_attributes" class="attributes" summary="attribute overview">'; foreach ($attributes as $name => $value) {