You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When 60M instead 60M in start balance string, error "unknown index 'start_balance'". And as result booking date of transaction is showing as actual date.
To correct the error string } elseif (0 === strpos($day[$i], '60F:')) {
must be replaced with } elseif (0 === strpos($day[$i], '60F:')||0 === strpos($day[$i], '60M:')) {
The text was updated successfully, but these errors were encountered:
When 60M instead 60M in start balance string, error "unknown index 'start_balance'". And as result booking date of transaction is showing as actual date.
To correct the error string
} elseif (0 === strpos($day[$i], '60F:')) {
must be replaced with
} elseif (0 === strpos($day[$i], '60F:')||0 === strpos($day[$i], '60M:')) {
The text was updated successfully, but these errors were encountered: