osCommerce / oscommerce2

osCommerce Online Merchant v2.x
http://www.oscommerce.com
MIT License
281 stars 222 forks source link

Error in braintree module #573

Open Jack-mcs opened 7 years ago

Jack-mcs commented 7 years ago

The credentials section of the latest Braintree module gives this error: Parse error: syntax error, unexpected '[' in ...\includes\apps\braintree\admin\content\credentials.php on line 17

That line is using javascript style code: $ma_data = [];

Changing that to php style seems to fix the problem: $ma_data = array(); (two places)