form truncate in frontend
-
Hi,
There is a little issue on line 714 in file “lettreinfo.php”
Currently is :
$ret=’
…
<form action=”#” method=”post” class=”newslform” onsubmit=”if(this.news_email.value==”” || this.news_email.value==”newsletter : votre email”){ return false; }”>
…
</p> ‘;But i think, it should be :
$ret=’
…
<form action=”#” method=”post” class=”newslform” onsubmit=”if(this.news_email.value==\’\’ || this.news_email.value==\’newsletter : votre email\’){ return false; }”>
…
</p> ‘;” are use un php variable to avoid ‘ but it cause an issue in html attribute.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘form truncate in frontend’ is closed to new replies.