Typo fixed

This commit is contained in:
Pavel Shevaev 2023-11-16 15:41:07 +03:00
parent 7a000fb820
commit fc46b77907
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ class Session
{ {
$n = 0; $n = 0;
foreach($this->plans as $plan) foreach($this->plans as $plan)
if(!$plan->isOver()) if($plan->isOver())
$n++; $n++;
return $n; return $n;
} }