View Revisions: Issue #2631 |
[ Back to Issue ] |
Summary |
0002631: v_IsCharAcceptableInNames rejects ampersands on bad grounds |
|
Revision |
2016-02-11 17:28 by Dusk |
|
Description |
// [RC] Returns whether this character is allowed in names.
bool v_IsCharAcceptableInNames ( char c )
{
...
// Pound is hard to type on USA boards.
if ( c == 38 )
return false;
...
}
The hell? ASCII doesn't even have a code for the pound character, that's latin-1. |
|
Revision |
2016-02-28 10:41 by cobalt |
|
Description |
// [RC] Returns whether this character is allowed in names.
bool v_IsCharAcceptableInNames ( char c )
{
...
// Pound is hard to type on USA boards.
if ( c == 38 )
return false;
...
}
The hell? ASCII doesn't even have a code for the pound character, that's latin-1. |
|
Revision |
2016-06-04 16:38 by Ru5tK1ng |
|
Description |
// [RC] Returns whether this character is allowed in names.
bool v_IsCharAcceptableInNames ( char c )
{
...
// Pound is hard to type on USA boards.
if ( c == 38 )
return false;
...
}
The hell? ASCII doesn't even have a code for the pound character, that's latin-1. |