Warning Line 57, Column 26: character "<" is the first character of a delimiter but occurred as data
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
This message may appear in several cases:
* You tried to include the "<" character in your page: you should escape it as "<"
* You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe.
* Another possibility is that you forgot to close quotes in a previous tag.
Error Line 56, Column 26: XML Parsing Error: StartTag: invalid element name
timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
Error Line 57, Column 26: XML Parsing Error: StartTag: invalid element name
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
Partager