Allow '-' in attributes together with required attributes (JS problem)
SVN revision: 1929
This commit is contained in:
+1
-1
@@ -1492,7 +1492,7 @@ void stou(char *str)
|
||||
int i;
|
||||
|
||||
for (i = 0; i < (int) strlen(str); i++)
|
||||
if (str[i] == ' ' || str[i] == '.' || str[i] == '/' || str[i] == '\\')
|
||||
if (str[i] == ' ' || str[i] == '.' || str[i] == '/' || str[i] == '\\' || str[i] == '-')
|
||||
str[i] = '_';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user