Merged in botanic/ryzomcore-botanic-testing (pull request #21)
Make it so that bad text always throws a nlwarning
This commit is contained in:
commit
3f04907c31
1 changed files with 0 additions and 17 deletions
|
@ -323,23 +323,6 @@ bool CI18N::parseLabel(ucstring::const_iterator &it, ucstring::const_iterator &l
|
|||
ucstring::const_iterator rewind = it;
|
||||
label.erase();
|
||||
|
||||
// first char must be A-Za-z@_
|
||||
if (it != last &&
|
||||
(
|
||||
(*it >= '0' && *it <= '9')
|
||||
|| (*it >= 'A' && *it <= 'Z')
|
||||
|| (*it >= 'a' && *it <= 'z')
|
||||
|| (*it == '_')
|
||||
|| (*it == '@')
|
||||
)
|
||||
)
|
||||
label.push_back(char(*it++));
|
||||
else
|
||||
{
|
||||
it = rewind;
|
||||
return false;
|
||||
}
|
||||
|
||||
// other char must be [0-9A-Za-z@_]*
|
||||
while (it != last &&
|
||||
(
|
||||
|
|
Loading…
Reference in a new issue