Skip to content
Snippets Groups Projects
Commit 3dffe90b authored by Olav Morken's avatar Olav Morken
Browse files

Default template header: Added default page title.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@193 44740490-163a-0410-bde0-09ae8108e29a
parent effce8ab
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,13 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php echo $data['header']; ?></title>
<title><?php
if(array_key_exists('header', $data)) {
echo $data['header'];
} else {
echo 'simpleSAMLphp';
}
?></title>
<style type="text/css">
......
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