From b4b8892b28dab32bbf9cbfc826004554c70bdc6e Mon Sep 17 00:00:00 2001 From: Pavel Vyskocil <vyskocilpavel@muni.cz> Date: Fri, 1 Sep 2017 00:51:06 +0200 Subject: [PATCH] Fixed module name --- templates/statistics-tpl.php | 2 +- www/index.php | 2 +- www/summary.php | 2 +- www/tables.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/statistics-tpl.php b/templates/statistics-tpl.php index 0c86cd3..482e0a6 100644 --- a/templates/statistics-tpl.php +++ b/templates/statistics-tpl.php @@ -6,7 +6,7 @@ include dirname(__DIR__)."/lib/Auth/Process/DatabaseCommand.php"; $this->data['header'] = 'SimpleSAMLphp Statistics'; $this->data['jquery'] = array('core' => TRUE, 'ui' => TRUE, 'css' => TRUE); -$this->data['head'] = '<link rel="stylesheet" media="screen" type="text/css" href="' . SimpleSAML_Module::getModuleUrl('statisticsperun/statisticsproxy.css') . '" />'; +$this->data['head'] = '<link rel="stylesheet" media="screen" type="text/css" href="' . SimpleSAML_Module::getModuleUrl('proxystatistics/statisticsproxy.css') . '" />'; $this->data['head'] .=''; $this->data['head'] .= '<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>'; $this->data['head'] .= '<script type="text/javascript"> diff --git a/www/index.php b/www/index.php index 2b692b9..f8d97d5 100644 --- a/www/index.php +++ b/www/index.php @@ -6,7 +6,7 @@ $config = SimpleSAML_Configuration::getInstance(); $session = SimpleSAML_Session::getSessionFromRequest(); -$t = new SimpleSAML_XHTML_Template($config, 'statisticsperun:statistics-tpl.php'); +$t = new SimpleSAML_XHTML_Template($config, 'proxystatistics:statistics-tpl.php'); $t->show(); diff --git a/www/summary.php b/www/summary.php index b789fef..7faab3b 100644 --- a/www/summary.php +++ b/www/summary.php @@ -4,7 +4,7 @@ include dirname(__DIR__)."/lib/Auth/Process/DatabaseCommand.php"; * @author Pavel Vyskočil <vyskocilpavel@muni.cz> */ ?> -<link rel="stylesheet" media="screen" type="text/css" href="<?php SimpleSAML_Module::getModuleUrl('statisticsperun/statisticsproxy.css')?>" /> +<link rel="stylesheet" media="screen" type="text/css" href="<?php SimpleSAML_Module::getModuleUrl('proxystatistics/statisticsproxy.css')?>" /> <h2>Summary</h2> <div id="summary" > diff --git a/www/tables.php b/www/tables.php index e1077d6..6a5294c 100644 --- a/www/tables.php +++ b/www/tables.php @@ -4,7 +4,7 @@ include dirname(__DIR__)."/lib/Auth/Process/DatabaseCommand.php"; * @author Pavel Vyskočil <vyskocilpavel@muni.cz> */ ?> -<link rel="stylesheet" media="screen" type="text/css" href="<?php SimpleSAML_Module::getModuleUrl('statisticsperun/statisticsproxy.css')?>" /> +<link rel="stylesheet" media="screen" type="text/css" href="<?php SimpleSAML_Module::getModuleUrl('proxystatistics/statisticsproxy.css')?>" /> <h2>All login</h2> <div id="tableOfAllLogin"> <script type="text/javascript"> -- GitLab