summaryrefslogtreecommitdiff
path: root/public/index.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-22 16:08:24 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-22 16:08:24 +0100
commit415d7a5a716726759c30151af11bd588d52acbb2 (patch)
tree2c0eb625c93516f257ab039a055b2585549a8809 /public/index.php
parent3a4260b8744a0deb331e78cff43567a386c8d9a8 (diff)
config.php plutôt que application.ini
Implémente https://github.com/marienfressinaud/FreshRSS/issues/272
Diffstat (limited to 'public/index.php')
-rwxr-xr-xpublic/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/index.php b/public/index.php
index 829e418f9..c8b15b3d9 100755
--- a/public/index.php
+++ b/public/index.php
@@ -29,7 +29,7 @@ if (file_exists ('install.php')) {
$dateLastModification = max(
@filemtime(DATA_PATH . '/touch.txt'),
@filemtime(LOG_PATH . '/application.log'),
- @filemtime(DATA_PATH . '/application.ini')
+ @filemtime(DATA_PATH . '/config.php')
);
$_SERVER['QUERY_STRING'] .= '&utime=' . file_get_contents(DATA_PATH . '/touch.txt'); //For ETag
if (httpConditional($dateLastModification, 0, 0, false, false, true)) {