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
Change line 351 phpinvoice.php, its not counting the multi array for the header:billing-purchaser info
fromfor ($i = 1; $i < max(count($this->from), count($this->to)); $i++) {
to for ($i = 1; $i < max(count([$this->from],1), count([$this->to],1)); $i++) {
The text was updated successfully, but these errors were encountered:
Change line 351 phpinvoice.php, its not counting the multi array for the header:billing-purchaser info
from
for ($i = 1; $i < max(count($this->from), count($this->to)); $i++) {
to
for ($i = 1; $i < max(count([$this->from],1), count([$this->to],1)); $i++) {
The text was updated successfully, but these errors were encountered: