this,
File: helpers / html / validator.php line # 68
Original: $ entries [] = "'." $ key. "'" ". $ Q. $ Value. $ Q;
Fixed: $ entries [] = '"'. $ Key. '"'. $ q. $ value. $ q;
Only reversed the quotes, ie, where it was single quotes put quotes. For time to render the code, display quotes and not single quotes.
This has happened to me before, do not know if the same file. But the rendering code draws the (') single quotation marks the beginning of each row of the array causing an error in javascript
the javascript code was well
<script type="text/javascript">
(function($){$.fn.validationEngineLanguage = function(){};$.validationEngineLanguage = {newLang: function(){$.validationEngineLanguage.allRules = {
required' : {
regex' : 'none',
alertText' : '<span class="msg-prefix">• </span>Este campo é obrigatório',
alertTextCheckboxMultiple' : '<span class="msg-prefix">• </span>Por favor, selecione uma opção',
alertTextCheckboxe' : '<span class="msg-prefix">• </span>Esta caixa de seleção é necessária',
alertTextDateRange' : '<span class="msg-prefix">• </span>Ambos os campos são obrigatórios intervalo de datas'
} ...
Note that the single quotes the beginning of each line disappear.
That's it!