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

Remove unused file: www/noconsent.php

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2407 44740490-163a-0410-bde0-09ae8108e29a
parent 3afffad6
No related branches found
No related tags found
No related merge requests found
<?php
require_once('_include.php');
if(array_key_exists('sptype', $_GET) && array_key_exists('spentityid', $_GET)) {
$metadata = SimpleSAML_Metadata_MetaDataStorageHandler::getMetadataHandler();
$spmetadata = $metadata->getMetaData($_GET['spentityid'], $_GET['sptype']);
} else {
$spmetadata = array();
}
/* Load simpleSAMLphp, configuration */
$config = SimpleSAML_Configuration::getInstance();
$session = SimpleSAML_Session::getInstance();
$t = new SimpleSAML_XHTML_Template($config, 'noconsent.php');
$t->data['spmetadata'] = $spmetadata;
if(array_key_exists('resumeFrom', $_REQUEST)) {
$t->data['resumeFrom'] = $_REQUEST['resumeFrom'];
}
$t->show();
?>
\ No newline at end of file
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