Guarda basta che modifiche il file prototype.js che è presento nella cartella js. Devi trovare le righe:
e le devi cambiare incodice:inspect: function() { return ‘[’ + this.map(Object.inspect).join(’, ‘) + ‘]’; }
pertanto adesso basterà sostituire '[' con '-' e non avrai più problemi di validazione.codice:inspect: function() { return ‘-’ + this.map(Object.inspect).join(’, ‘) + ‘-’; }
Spero d'esser stato abbastanza chiaro.