|
Posted by NC on 05/08/07 23:20
On May 8, 4:01 pm, crepmaster <ebonguean...@gmail.com> wrote:
>
> line 30 define('CHECKOUT_CGV', 'Condizioni generali di vendità');
> line 31 define('TEXT_CONDITIONS', 'ho letto e accetato<a href="' .
> tep_href_link(FILENAME_CONDITIONS, 'origin=checkout_payment') .
> '" class="conditions">Condizioni generali di vendità! </a>');
> line 32 define('JS_ERROR_NO_CHECK_CONDITION', '* Per continuare
> l'ordine, le condizioni generali devono essere accetate!');
>
> i'have this synthax error but i can't understand where the error is
> coming from.
The apostrophe in "l'ordine". Try this:
define('JS_ERROR_NO_CHECK_CONDITION',
'* Per continuare l\'ordine, le condizioni generali devono essere
accetate!');
or this:
define('JS_ERROR_NO_CHECK_CONDITION',
"* Per continuare l'ordine, le condizioni generali devono essere
accetate!");
Cheers,
NC
Navigation:
[Reply to this message]
|