When adding a new customer on new install of v1.37 I was receiving an unexpected T_STRING on line 37 of \includes\languages\english\create_account.php.

Line 37 is
Code:
define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: <a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS ." </a>\n\n");
I added ' around the last section of the line and it seems to have fix the error.
Code:
define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: <a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS .'" </a>\n\n"');
I'm just wondering if this is a bug or could there be something else going on here that I missed somewhere else?

Thanks
LadyHLG