Skip to content
Snippets Groups Projects
Commit 6b1fa288 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

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
parent ac244e10
No related branches found
No related tags found
No related merge requests found
...@@ -572,7 +572,7 @@ class SimpleSAML_XHTML_Template { ...@@ -572,7 +572,7 @@ class SimpleSAML_XHTML_Template {
public function show() { public function show() {
$filename = $this->findTemplatePath($this->template); $filename = $this->findTemplatePath($this->template);
require_once($filename); require($filename);
} }
......
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