If you use the Language Override and the existing text has a quotation mark which is escaped, the escape character is not added to the override.
SO:
$_['text_register_account'] = By creating an account you will be able to shop faster, be up to date on an order\'s status, and keep track of the orders you have previously made.';
BECOMES:
$_['text_register_account'] = 'Make an account if you expect to use us again, otherwise use Guest Checkout. By creating an account you will be able to shop faster, be up to date on an order's status, and keep track of the orders you have previously made.';
In the word ORDER the escape \ is missed.
And that kills the page
SO:
$_['text_register_account'] = By creating an account you will be able to shop faster, be up to date on an order\'s status, and keep track of the orders you have previously made.';
BECOMES:
$_['text_register_account'] = 'Make an account if you expect to use us again, otherwise use Guest Checkout. By creating an account you will be able to shop faster, be up to date on an order's status, and keep track of the orders you have previously made.';
In the word ORDER the escape \ is missed.
And that kills the page
Share this post:
Responses (1)
-
Accepted Answer
Thanks Simon for reporting this problem. Here it has been fixed https://github.com/arastta/arastta/issues/387
You can copy this file if you want to apply it right now:
https://github.com/arastta/arastta/blob/1.3-dev/admin/model/system/language_override.php
Regards
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »