diff options
author | Hanne Moa <hanne.moa@uninett.no> | 2016-02-29 11:57:31 +0100 |
---|---|---|
committer | Hanne Moa <hanne.moa@uninett.no> | 2016-02-29 12:00:06 +0100 |
commit | 43be0bed37766c7ee30173095c44086fa58a60a8 (patch) | |
tree | 602a3b5a8d7e973dd0f3aac5dce98242ad65984c /modules | |
parent | 2605d6a1c46de67e2ebcefe7bd4010b2a8512a49 (diff) | |
download | simplesamlphp-43be0bed37766c7ee30173095c44086fa58a60a8.zip simplesamlphp-43be0bed37766c7ee30173095c44086fa58a60a8.tar.gz simplesamlphp-43be0bed37766c7ee30173095c44086fa58a60a8.tar.bz2 |
s/-tpl.php/.tpl.php/
WTF...
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cron/templates/croninfo.tpl.php (renamed from modules/cron/templates/croninfo-tpl.php) | 0 | ||||
-rw-r--r-- | modules/cron/www/croninfo.php | 2 | ||||
-rw-r--r-- | modules/discopower/lib/PowerIdPDisco.php | 2 | ||||
-rw-r--r-- | modules/discopower/templates/disco.tpl.php (renamed from modules/discopower/templates/disco-tpl.php) | 0 | ||||
-rw-r--r-- | modules/portal/lib/Portal.php | 4 | ||||
-rw-r--r-- | modules/sanitycheck/templates/check.tpl.php (renamed from modules/sanitycheck/templates/check-tpl.php) | 0 | ||||
-rw-r--r-- | modules/sanitycheck/www/index.php | 2 | ||||
-rw-r--r-- | modules/statistics/lib/StatDataset.php | 2 | ||||
-rw-r--r-- | modules/statistics/templates/statistics.tpl.php (renamed from modules/statistics/templates/statistics-tpl.php) | 0 | ||||
-rw-r--r-- | modules/statistics/templates/statmeta.tpl.php (renamed from modules/statistics/templates/statmeta-tpl.php) | 0 | ||||
-rw-r--r-- | modules/statistics/www/showstats.php | 2 | ||||
-rw-r--r-- | modules/statistics/www/statmeta.php | 2 |
12 files changed, 8 insertions, 8 deletions
diff --git a/modules/cron/templates/croninfo-tpl.php b/modules/cron/templates/croninfo.tpl.php index 49aa313..49aa313 100644 --- a/modules/cron/templates/croninfo-tpl.php +++ b/modules/cron/templates/croninfo.tpl.php diff --git a/modules/cron/www/croninfo.php b/modules/cron/www/croninfo.php index 79ad1d0..b8e3246 100644 --- a/modules/cron/www/croninfo.php +++ b/modules/cron/www/croninfo.php @@ -36,6 +36,6 @@ foreach ($tags AS $tag) { -$t = new SimpleSAML_XHTML_Template($config, 'cron:croninfo-tpl.php', 'cron:cron'); +$t = new SimpleSAML_XHTML_Template($config, 'cron:croninfo.tpl.php', 'cron:cron'); $t->data['urls'] = $urls; $t->show(); diff --git a/modules/discopower/lib/PowerIdPDisco.php b/modules/discopower/lib/PowerIdPDisco.php index 15f6a9f..88cc30f 100644 --- a/modules/discopower/lib/PowerIdPDisco.php +++ b/modules/discopower/lib/PowerIdPDisco.php @@ -247,7 +247,7 @@ class sspmod_discopower_PowerIdPDisco extends SimpleSAML_XHTML_IdPDisco $idpList = $this->idplistStructured($this->filterList($idpList)); $preferredIdP = $this->getRecommendedIdP(); - $t = new SimpleSAML_XHTML_Template($this->config, 'discopower:disco-tpl.php', 'disco'); + $t = new SimpleSAML_XHTML_Template($this->config, 'discopower:disco.tpl.php', 'disco'); $t->data['idplist'] = $idpList; $t->data['preferredidp'] = $preferredIdP; $t->data['return'] = $this->returnURL; diff --git a/modules/discopower/templates/disco-tpl.php b/modules/discopower/templates/disco.tpl.php index 8f1e4e2..8f1e4e2 100644 --- a/modules/discopower/templates/disco-tpl.php +++ b/modules/discopower/templates/disco.tpl.php diff --git a/modules/portal/lib/Portal.php b/modules/portal/lib/Portal.php index 7478e0f..df0df47 100644 --- a/modules/portal/lib/Portal.php +++ b/modules/portal/lib/Portal.php @@ -38,7 +38,7 @@ class sspmod_portal_Portal { function getMenu($thispage) { $config = SimpleSAML_Configuration::getInstance(); - $t = new SimpleSAML_XHTML_Template($config, 'sanitycheck:check-tpl.php'); + $t = new SimpleSAML_XHTML_Template($config, 'sanitycheck:check.tpl.php'); $tabset = $this->getTabset($thispage); $logininfo = $this->getLoginInfo($t, $thispage); $text = ''; @@ -68,4 +68,4 @@ class sspmod_portal_Portal { } -}
\ No newline at end of file +} diff --git a/modules/sanitycheck/templates/check-tpl.php b/modules/sanitycheck/templates/check.tpl.php index cf34bff..cf34bff 100644 --- a/modules/sanitycheck/templates/check-tpl.php +++ b/modules/sanitycheck/templates/check.tpl.php diff --git a/modules/sanitycheck/www/index.php b/modules/sanitycheck/www/index.php index d8b6088..ec631be 100644 --- a/modules/sanitycheck/www/index.php +++ b/modules/sanitycheck/www/index.php @@ -22,7 +22,7 @@ if (isset($_REQUEST['output']) && $_REQUEST['output'] == 'text') { exit; } -$t = new SimpleSAML_XHTML_Template($config, 'sanitycheck:check-tpl.php'); +$t = new SimpleSAML_XHTML_Template($config, 'sanitycheck:check.tpl.php'); $t->data['pageid'] = 'sanitycheck'; $t->data['errors'] = $errors; $t->data['info'] = $info; diff --git a/modules/statistics/lib/StatDataset.php b/modules/statistics/lib/StatDataset.php index e628510..aeb69d0 100644 --- a/modules/statistics/lib/StatDataset.php +++ b/modules/statistics/lib/StatDataset.php @@ -251,7 +251,7 @@ class sspmod_statistics_StatDataset public function getDelimiterPresentation() { $config = SimpleSAML_Configuration::getInstance(); - $t = new SimpleSAML_XHTML_Template($config, 'statistics:statistics-tpl.php'); + $t = new SimpleSAML_XHTML_Template($config, 'statistics:statistics.tpl.php'); $availdelimiters = $this->availDelimiters(); diff --git a/modules/statistics/templates/statistics-tpl.php b/modules/statistics/templates/statistics.tpl.php index 1efa682..1efa682 100644 --- a/modules/statistics/templates/statistics-tpl.php +++ b/modules/statistics/templates/statistics.tpl.php diff --git a/modules/statistics/templates/statmeta-tpl.php b/modules/statistics/templates/statmeta.tpl.php index 1ad37d3..1ad37d3 100644 --- a/modules/statistics/templates/statmeta-tpl.php +++ b/modules/statistics/templates/statmeta.tpl.php diff --git a/modules/statistics/www/showstats.php b/modules/statistics/www/showstats.php index ed4c443..d15edc7 100644 --- a/modules/statistics/www/showstats.php +++ b/modules/statistics/www/showstats.php @@ -96,7 +96,7 @@ if (array_key_exists('output', $_REQUEST) && $_REQUEST['output'] === 'csv') { -$t = new SimpleSAML_XHTML_Template($config, 'statistics:statistics-tpl.php'); +$t = new SimpleSAML_XHTML_Template($config, 'statistics:statistics.tpl.php'); $t->data['pageid'] = 'statistics'; $t->data['header'] = 'stat'; $t->data['imgurl'] = $grapher->show($axis['axis'], $axis['axispos'], $datasets, $maxes); diff --git a/modules/statistics/www/statmeta.php b/modules/statistics/www/statmeta.php index 46c5ddb..4b8a9d0 100644 --- a/modules/statistics/www/statmeta.php +++ b/modules/statistics/www/statmeta.php @@ -10,7 +10,7 @@ $aggr->loadMetadata(); $metadata = $aggr->getMetadata(); -$t = new SimpleSAML_XHTML_Template($config, 'statistics:statmeta-tpl.php'); +$t = new SimpleSAML_XHTML_Template($config, 'statistics:statmeta.tpl.php'); $t->data['metadata'] = $metadata; $t->show(); |