diff options
| author | 2013-09-14 19:26:01 +0200 | |
|---|---|---|
| committer | 2013-09-14 19:26:01 +0200 | |
| commit | 73fe0eabbe4461ba8c6d24692ca05de0ac93de11 (patch) | |
| tree | 0d562aca69c9a8f85e3afb86dd2a76802afdf6b2 /app/controllers/entryController.php | |
| parent | ff8531fb64ce0bf7c5d0dd01ab672e1a6584f246 (diff) | |
Fix issue #151 : marquer lus les articles du futur
On peut désormais marquer comme lu les articles parus dans le futur
Diffstat (limited to 'app/controllers/entryController.php')
| -rwxr-xr-x | app/controllers/entryController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/entryController.php b/app/controllers/entryController.php index 679a4201f..4c9eb9d1b 100755 --- a/app/controllers/entryController.php +++ b/app/controllers/entryController.php @@ -36,7 +36,7 @@ class entryController extends ActionController { $is_read = Request::param ('is_read'); $get = Request::param ('get'); $nextGet = Request::param ('nextGet', $get); - $dateMax = Request::param ('dateMax', time ()); + $dateMax = Request::param ('dateMax', 0); $is_read = !!$is_read; |
