Is there a way to insert an escaped character for carriage return in a define()
statement?
define('MODULE_PAYMENT_PAYPALWPP_MARK_BUTTON_TXT',
"WSW uses PayPal as its primary merchant card account vendor./r
You can check out with PayPal without the use of a PayPal account.");
I attempted the above statement but it will only out put the /r
as literal.
` -- because in HTML, it will not break the line unless you tell it to... for the same reason that if you have a
tag, press enter a bunch of times, the browser still renders it all on the same line.
– rm-vanda Nov 12 '14 at 15:45