From c20ab1f059907fa538635cce25ff3f3242ee9eb3 Mon Sep 17 00:00:00 2001 From: Brian Gregg Date: Wed, 26 May 2021 09:58:42 -0400 Subject: [PATCH] More updates. --- src/Users/UserStatistics.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Users/UserStatistics.php b/src/Users/UserStatistics.php index 5f10e17..a83d094 100644 --- a/src/Users/UserStatistics.php +++ b/src/Users/UserStatistics.php @@ -145,10 +145,10 @@ public function removeStatistic($typeCode,$categoryCode) * Update a user statistic. * */ - public function updateStatistic($fromTypeCode,$fromCategoryCode,$toTypeCode,$toCategoryCode,$segementType,$note) + public function updateStatistic($fromTypeCode,$fromCategoryCode,$toTypeCode,$toCategoryCode,$segmentType,$note) { /* Remove "from" statistic, then add "to" statistic */ - $this->removeStatistic($fromTypeCode,$categoryCode); + $this->removeStatistic($fromTypeCode,$fromCategoryCode); $this->addStatistic($toTypeCode,$toCategoryCode,$segmentType,$note); }