- Nov 16, 2013
- 136,587
- 4,842
Let me first say that this may not be the bug and you can remove this thread quickly before proceed with reading specially because
I'm using it so I don't need write 10 characters lenght of message every time. (Well sometimes)
For example if you Post the message (without quotes)
Then the text will be displayed as
But what if we Post the message like this (without quotes)
Then the text will be displayed as
As you can see the function which check the String length should first remove unnecessary whitespaces or if you
actually pass the String to Function you should first remove whitespaces.
Note 1: I could try reply to this thread if is necessary to prove it.
Note 2: There may be other Bugs or they may not and to tell you the truth I don't really wish to waste your time because is similar as this one
is not really important and you are probably pretty strict about those reports.
Sorry if I made any mistake I just wrote this here quickly.
I'm using it so I don't need write 10 characters lenght of message every time. (Well sometimes)
For example if you Post the message (without quotes)
Code:
"This is some whitespace."
Then the text will be displayed as
Code:
"This is some whitespace." [COLOR="#61BD6D"]// Which is correct it should remove unnecessary whitespace[/COLOR]
But what if we Post the message like this (without quotes)
Code:
"a b" [COLOR="#F37934"]// This will by-pass the character length warning[/COLOR]
Then the text will be displayed as
Code:
"a b" //Which is correct it should remove unnecessary whitespace but [COLOR="#F37934"]lenght of String is only 3 characters[/COLOR]
As you can see the function which check the String length should first remove unnecessary whitespaces or if you
actually pass the String to Function you should first remove whitespaces.
Note 1: I could try reply to this thread if is necessary to prove it.
Note 2: There may be other Bugs or they may not and to tell you the truth I don't really wish to waste your time because is similar as this one
is not really important and you are probably pretty strict about those reports.
Sorry if I made any mistake I just wrote this here quickly.