jonusc
Well, nearly! For people who are paranoid about any PHP Notices when developing their site, Line 192 will produce an error because the var isn't always defined. So open up the PHP file and on @192 where it has...
switch ($exorder[$i]) {
...insert on a new line JUST before it, this little doobie...
if (!isset($exorder[$i])) break;
...which will break the for loop as it doesn't need to run anyway in this case. No more Undefined index error - now they are ALL gone and it's 100% perfect! Thanks, developer!
I just wanted to point out that I added this fix to the latest version. Thanks!

