From 5b429b7b50b4b8edc43d04ca75914532dcac2d35 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Mon, 23 Feb 2009 13:14:18 +0000
Subject: [PATCH] renamed statistics configuration file

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1303 44740490-163a-0410-bde0-09ae8108e29a
---
 .../config-templates/{statistics.php => module_statistics.php} | 0
 modules/statistics/docs/statistics.txt                         | 3 +--
 modules/statistics/lib/Aggregator.php                          | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)
 rename modules/statistics/config-templates/{statistics.php => module_statistics.php} (100%)

diff --git a/modules/statistics/config-templates/statistics.php b/modules/statistics/config-templates/module_statistics.php
similarity index 100%
rename from modules/statistics/config-templates/statistics.php
rename to modules/statistics/config-templates/module_statistics.php
diff --git a/modules/statistics/docs/statistics.txt b/modules/statistics/docs/statistics.txt
index 90af69317..e8c70cf1b 100644
--- a/modules/statistics/docs/statistics.txt
+++ b/modules/statistics/docs/statistics.txt
@@ -41,8 +41,7 @@ Here you can see that I collect statistics in one file for several installations
 
 ## Configure the statistics module
 
-First enable the statistics module, as you enable any other
-module:
+First enable the statistics module, as you enable any other module:
 
     cd modules/statistics
     touch enable
diff --git a/modules/statistics/lib/Aggregator.php b/modules/statistics/lib/Aggregator.php
index 3176ca3f8..964de2f65 100644
--- a/modules/statistics/lib/Aggregator.php
+++ b/modules/statistics/lib/Aggregator.php
@@ -19,7 +19,7 @@ class sspmod_statistics_Aggregator {
 	public function __construct() {
 	
 		$this->config = SimpleSAML_Configuration::getInstance();
-		$this->statconfig = $this->config->copyFromBase('statconfig', 'statistics.php');
+		$this->statconfig = $this->config->copyFromBase('statconfig', 'module_statistics.php');
 		
 		$this->statdir = $this->statconfig->getValue('statdir');
 		$this->inputfile = $this->statconfig->getValue('inputfile');
-- 
GitLab