diff --git a/html/ops/update_forum_activities.php b/html/ops/update_forum_activities.php index a86a9430d5..c95210ab83 100755 --- a/html/ops/update_forum_activities.php +++ b/html/ops/update_forum_activities.php @@ -21,7 +21,7 @@ while ($thread = mysql_fetch_assoc($result)) { $forum = mysql_fetch_assoc($result3); } - // Helpdesk activiy is scaled linearly by the number of days since the last post. + // Helpdesk activity is scaled linearly by the number of days since the last post. if ($forum != NULL && $forum['is_helpdesk']) { $timeDiff = $currentTime - $thread['timestamp']; $dayDiff = floor($timeDiff / 86400); // 86400 = # of seconds in a day;