From 0e485df3043ee5f37e8a0af5bb60da29c8e23d7d Mon Sep 17 00:00:00 2001 From: e107steved Date: Sun, 23 Sep 2007 10:18:31 +0000 Subject: [PATCH] Hopefully fix 'You have read 1 of these threads...' --- e107_plugins/forum/forum.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e107_plugins/forum/forum.php b/e107_plugins/forum/forum.php index 7d88d969c..6d3de603f 100644 --- a/e107_plugins/forum/forum.php +++ b/e107_plugins/forum/forum.php @@ -11,9 +11,9 @@ | GNU General Public License (http://gnu.org). | | $Source: /cvs_backup/e107_0.8/e107_plugins/forum/forum.php,v $ -| $Revision: 1.1.1.1 $ -| $Date: 2006-12-02 04:35:11 $ -| $Author: mcfly_e107 $ +| $Revision: 1.2 $ +| $Date: 2007-09-23 10:18:22 $ +| $Author: e107steved $ +----------------------------------------------------------------------------+ */ if(!defined("e107_INIT")) { @@ -140,7 +140,7 @@ if (USER == TRUE) $total_new_threads = $sql->db_Count('forum_t', '(*)', "WHERE thread_datestamp>'".USERLV."' "); if (USERVIEWED != "") { - $tmp = explode("..", USERVIEWED); + $tmp = explode(".", USERVIEWED); // List of numbers, separated by single period $total_read_threads = count($tmp); } else