lat9 / multiship

Zen Cart: Multiple Ship-To Addresses
GNU General Public License v2.0
1 stars 1 forks source link

account_history: PHP notice/warning thrown when customer has no orders #39

Open lat9 opened 4 years ago

lat9 commented 4 years ago

Need to update line 10 of /includes/modules/pages/account_history/header_php_account_history_multiship.php to account for that, changing

if (count($accountHistory) > 0) {

to

if (!empty($accountHistory) && is_array($accountHistory)) {