From fae330d81aafdbcfe73f10d03209189fa2d9f639 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Fri, 8 Feb 2008 12:01:45 +0000
Subject: [PATCH] Templates::error: Check that error variables exists before
 using them.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@270 44740490-163a-0410-bde0-09ae8108e29a
---
 templates/default/en/error.php | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/templates/default/en/error.php b/templates/default/en/error.php
index 8829f17ee..221b1ff8d 100644
--- a/templates/default/en/error.php
+++ b/templates/default/en/error.php
@@ -8,20 +8,30 @@
 	<div id="content">
 	
 		<h2><?php echo (isset($this->data['title']) ? $this->data['title'] : 'simpleSAMLphp error'); ?></h2>
-		
-		<p><?php echo $this->data['descr']; ?></p>
 
+<?php
+if(array_key_exists('descr', $this->data)) {
+	echo '<p>' . $this->data['descr'] . '</p>';
+}
+?>
+
+<?php
+/* Print out the track id if it exists. */
+if(array_key_exists('trackid', $this->data)) {
+?>
 		<div class="trackidtext">
 			If you report this error the track ID makes it possible to track your session in the logs available to the system adinistrator: 
 				<span class="trackid"><?php echo $this->data['trackid']; ?><span>
 
 		</div>
+<?php
+}
+?>
 		
 
-
 <?php
 /* Print out exception only if the exception is available. */
-if ($this->data['showerrors']) {
+if (array_key_exists('showerrors', $this->data) && $this->data['showerrors']) {
 ?>
 		<h2>Debug information</h2>
 		<p>The debug information below may be interesting for the administrator / help desk:</p>
-- 
GitLab