diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-01-24 13:14:31 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-01-24 13:14:31 +0000 |
commit | 0a1b040588654b82baa7c258b02355081873b775 (patch) | |
tree | 67b46a1974bd3247e413c969d2b127d111baebf9 /phpBB/includes/functions.php | |
parent | 61fbde5a72a26a8dd964a529720bdae6e3e14577 (diff) | |
download | forums-0a1b040588654b82baa7c258b02355081873b775.tar forums-0a1b040588654b82baa7c258b02355081873b775.tar.gz forums-0a1b040588654b82baa7c258b02355081873b775.tar.bz2 forums-0a1b040588654b82baa7c258b02355081873b775.tar.xz forums-0a1b040588654b82baa7c258b02355081873b775.zip |
BBCode enabled profile fields, removed field_name from profile fields, fixed some uninitialised variable issues, some small conversion issues
git-svn-id: file:///svn/phpbb/trunk@5076 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 03d9f5cc26..7a7de96fc5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -598,7 +598,7 @@ function markread($mode, $forum_id = 0, $topic_id = 0, $marktime = false) } // Default tracking type -// $type = TRACK_NORMAL; + $type = TRACK_NORMAL; $current_time = ($marktime) ? $marktime : time(); $topic_id = (int) $topic_id; |