diff options
| author | 2013-11-28 15:32:27 +0100 | |
|---|---|---|
| committer | 2013-11-28 15:32:27 +0100 | |
| commit | cec39d14f12068bf25e9611fd235f347222b2c02 (patch) | |
| tree | 6af1dc600bbca16999205a6f212ba9208110c19b /public | |
| parent | 1e9ccb1da9f38ca983258b983e156d56a2887bc9 (diff) | |
| parent | 27456258e6da5d274ee881c95760c51506479a2b (diff) | |
Merge branch 'dev' into sharing
Diffstat (limited to 'public')
| -rwxr-xr-x | public/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/index.php b/public/index.php index 5728d981b..9d1ee711c 100755 --- a/public/index.php +++ b/public/index.php @@ -26,9 +26,9 @@ if (file_exists ('install.php')) { session_cache_limiter(''); require (LIB_PATH . '/http-conditional.php'); $dateLastModification = max( - @filemtime(DATA_PATH . '/touch.txt'), - @filemtime(LOG_PATH . '/application.log'), - @filemtime(DATA_PATH . '/application.ini') + @filemtime(DATA_PATH . '/touch.txt') - 1, + @filemtime(LOG_PATH . '/application.log') - 1, + @filemtime(DATA_PATH . '/application.ini') - 1 ); if (httpConditional($dateLastModification, 0, 0, false, false, true)) { exit(); //No need to send anything |
