diff options
| author | 2013-11-05 20:27:00 +0100 | |
|---|---|---|
| committer | 2013-11-05 20:27:00 +0100 | |
| commit | cc84578870c6e200f1bc37c0405265f63f8ec581 (patch) | |
| tree | 030f85386868d29b8455f583215894015a8e22cd /public/index.php | |
| parent | 0efcb40d8da1513fb751997cd6e1dc410ff0ee6d (diff) | |
Date de modification de application.ini
Prise en compte de configuration/application.ini pour la date de
dernière modification
Diffstat (limited to 'public/index.php')
| -rwxr-xr-x | public/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/public/index.php b/public/index.php index 5f753d1a6..10292d111 100755 --- a/public/index.php +++ b/public/index.php @@ -31,9 +31,10 @@ if (file_exists (PUBLIC_PATH . '/install.php')) { session_cache_limiter(''); require (LIB_PATH . '/http-conditional.php'); $dateLastModification = max(filemtime(PUBLIC_PATH . '/data/touch.txt'), - filemtime(PUBLIC_PATH . '/data/Configuration.array.php'), filemtime(LOG_PATH . '/application.log'), - time() - 3600); + filemtime(PUBLIC_PATH . '/data/Configuration.array.php'), + filemtime(APP_PATH . '/configuration/application.ini'), + time() - 14400); if (httpConditional($dateLastModification, 0, 0, false, false, true)) { exit(); //No need to send anything } |
