constant HISTORY_READ_LIMIT

Entities changed before this time are always shown as read.

Entities changed within this time may be marked as new, updated, or read, depending on their state for the current user. Defaults to 30 days ago.

3 uses of HISTORY_READ_LIMIT
comment_num_new in drupal/core/modules/comment/comment.module
Gets the number of new comments for the current user and the specified node.
node_mark in drupal/core/modules/node/node.module
Decides on the type of marker to be displayed for a given node.
_forum_user_last_visit in drupal/core/modules/forum/forum.module
Gets the last time the user viewed a node.

File

drupal/core/modules/history/history.module, line 20
Records which users have read which content.

Code

define('HISTORY_READ_LIMIT', REQUEST_TIME - 30 * 24 * 60 * 60);