trunk320 and 321

Ok, besides the “Can’t find javasript.tpl” errors during install (I know they were there). I did run into the same mysql errors that most people are. Just to let everyone know,

INSERT INTO `phpvms_ranks` VALUES(1, 'New Hire', 0);

is incorrect.Why? Because 3 values do not match 4 fields. To fix this, it should be

INSERT INTO `phpvms_ranks` VALUES(1, 'New Hire', , 0);

Another way to get around this is to manually add an image with it’s location to the blank spot. Or you can manually add each line of sql into your database. However, the first block of code will always give an error.

Crap, I left out the one field in the installer.sql.That’s going up right now.I can’t reproduce the javascript.tpl error. It’s on the second page right? We’ve run into this before, I thought I had it fixed.Is the template for that javascript file different?