diff -u tt-rss-20051027/backend.php tt-rss-mod7/backend.php --- tt-rss-20051027/backend.php 2005-10-25 11:03:15.000000000 -0400 +++ tt-rss-mod7/backend.php 2005-10-27 19:55:54.444233568 -0400 @@ -690,8 +690,13 @@ print "$update_pic"; print "$marked_pic"; - print " - ".$line["updated"].""; + print ""; + print " "; + if (DISPLAY_ENTRY_TIME_AS_STORY_LINK) { + print "".$line["updated"].""; + } else { + print "".$line["updated"].""; + } if ($line["feed_title"]) { print "$content_link"; diff -u tt-rss-20051027/config.php-dist tt-rss-mod7/config.php-dist --- tt-rss-20051027/config.php-dist 2005-10-26 01:29:52.000000000 -0400 +++ tt-rss-mod7/config.php-dist 2005-10-27 19:56:34.650121344 -0400 @@ -25,6 +25,9 @@ define(ENABLE_PREFS_CATCHUP_UNCATCHUP, false); // enable "Mark as read/unread" buttons in preferences dialog + define(DISPLAY_ENTRY_TIME_AS_STORY_LINK, true); + // enable/disable the display of the entry time as a link to the story + define(ENABLE_LABELS, false); // experimental support for virtual feeds or labels based on user // crafted SQL queries. This feature is highly experimental and