At line 68 of common.php there is a break statement that doesn't work here, because it is within an if statement, and not within a control structure. According to the PHP manual (http://www.php.net/manual/en/control-structures.break.php): "break ends execution of the current for, foreach, while, do-while or switch structure."
I guess this should be an exit statement, like in the other code blocks that handle exceptions?
NOCC 1.8.2
Good catch!
Committed to SVN (In Revision 2127)...