13 Mar 2007, 04:05
#1
Zen Follower
- Join Date:
- May 2005
- Posts:
- 361
- Plugin Contributions:
- 1
unexpected T_STRING error in create_account.php
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
I added ' around the last section of the line and it seems to have fix the error.
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
Line 37 is
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.
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