+Random Terrain #1 Posted October 7, 2009 I tried to post a number that looks like this: %OO1OOOOO But the forum software won't let me. It converts it to 100000. Take a look: 100000 What in the heck is making it screw up? Quote Share this post Link to post Share on other sites
+batari #2 Posted October 7, 2009 I tried to post a number that looks like this: %OO1OOOOO But the forum software won't let me. It converts it to 100000. Take a look: 100000 What in the heck is making it screw up? I have noticed this before. The workaround is to put a formatting tag in there as such: %00100000. Quote Share this post Link to post Share on other sites
+Random Terrain #3 Posted October 7, 2009 I have noticed this before. The workaround is to put a formatting tag in there as such: %00100000. Doesn't seem to work like that in a code snippet box: %[b][/b]00100000 Quote Share this post Link to post Share on other sites
+Random Terrain #4 Posted October 7, 2009 OK, I think I have the fix. This seems to work: "& # 3 7 ;" I'll just use that instead of this "%" when there is a problem: %00100000 Quote Share this post Link to post Share on other sites
RevEng #5 Posted October 7, 2009 I think its an anti-hack filter on the form submission. Its doing that to avoid getting a literal zero char in the middle of a text form. If you add an extra percent and 2 extra zeros you can get around it. Eg. Use %%00001 to get %001 Quote Share this post Link to post Share on other sites
+Random Terrain #6 Posted October 7, 2009 If you add an extra percent and 2 extra zeros you can get around it. That seems to work too: %00100000 So now we have two ways to get around it. Quote Share this post Link to post Share on other sites