acamboy / lightlook

Automatically exported from code.google.com/p/lightlook
0 stars 0 forks source link

It is also necessary to check for invalid characters in msgSender name #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. when msgSender i.e. contain "/" character

What is the expected output? What do you see instead?
error 76, about cannot create folder

What version of the product are you using? On what operating system?
1.3

Please provide any additional information below.
Necessary to add such code for msgSender checking also:

For J = LBound(invalidChars) To UBound(invalidChars)
    temp = Replace(msgSender, invalidChars(J), " ")
    msgSender = temp
Next J

Original issue reported on code.google.com by bukhalen...@gmail.com on 6 Sep 2010 at 6:14

GoogleCodeExporter commented 9 years ago
"[" and "]" characters must also be added to illegal characters lists.

Original comment by jumomar...@gmail.com on 2 Jul 2012 at 7:20