diff options
| author | 2013-11-03 22:34:10 +0100 | |
|---|---|---|
| committer | 2013-11-04 23:33:20 +0100 | |
| commit | 792f78e3d5c21df5f414660b4b0363f59896bbf5 (patch) | |
| tree | 4ba53820963712ca3093f3558e4842840c0ccda3 /public/index.php | |
| parent | 665d22be76db6ea58ee88bf29674fd37b36f5e68 (diff) | |
Faute de frappe dans le calcul de la date de dernière modification
Diffstat (limited to 'public/index.php')
| -rwxr-xr-x | public/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/index.php b/public/index.php index daf65c54a..6f9c63fa5 100755 --- a/public/index.php +++ b/public/index.php @@ -30,8 +30,8 @@ if (file_exists (PUBLIC_PATH . '/install.php')) { } else { session_cache_limiter(''); require (LIB_PATH . '/http-conditional.php'); - $dateLastModification = max(filemtime(filemtime(PUBLIC_PATH . '/data/touch.txt'), - PUBLIC_PATH . '/data/Configuration.array.php'), + $dateLastModification = max(filemtime(PUBLIC_PATH . '/data/touch.txt'), + filemtime(PUBLIC_PATH . '/data/Configuration.array.php'), filemtime(LOG_PATH . '/application.log'), time() - 3600); if (httpConditional($dateLastModification, 0, 0, false, false, true)) { |
