From 6b1fa288559ea2724513b7b99c25eacf3689cdad Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20P=C3=A9rez=20Crespo?= <jaime.perez@uninett.no>
Date: Fri, 12 Oct 2012 11:15:06 +0000
Subject: [PATCH] require_once() replaced with require() in the XHTML template
 system as requested in issue #385.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3188 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/XHTML/Template.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/SimpleSAML/XHTML/Template.php b/lib/SimpleSAML/XHTML/Template.php
index 49582bbec..c7db50eb3 100644
--- a/lib/SimpleSAML/XHTML/Template.php
+++ b/lib/SimpleSAML/XHTML/Template.php
@@ -572,7 +572,7 @@ class SimpleSAML_XHTML_Template {
 	public function show() {
 
 		$filename = $this->findTemplatePath($this->template);
-		require_once($filename);
+		require($filename);
 	}
 
 
-- 
GitLab