diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 15d4429e0..07ec0786b 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -18,9 +18,22 @@ * Markers used by theme_mark() and node_mark() to designate content. * @see theme_mark(), node_mark() */ -define('MARK_READ', 0); -define('MARK_NEW', 1); + +/** + * Mark content as read. + */ +define('MARK_READ', 0); + +/** + * Mark content as being new. + */ +define('MARK_NEW', 1); + +/** + * Mark content as being updated. + */ define('MARK_UPDATED', 2); + /** * @} End of "Content markers". */ |