Community
Participate
Working Groups
I am not sure if this is intended or not, but the New Plugin Project Wizard allows a project name to start with "%". There seems to be a simple mistake in the way PDE checks if the name doesn't contain '%': if (name.indexOf('%') > 0) should be if (name.indexOf('%') > -1) Same for location.indexOf ... Lines 220 and 226 (in 3.4) Somehow I manage to find these really minor bugs :)
Fixed in HEAD. I'm going to add the IP Log flag to this since you pointed out the exact lines and changes that need to be made. It is easier to track contributions if you make a patch though. Thanks!