The reason for that is that the "add file" button triggers the refresh mode, which leads to this code:
- Code: Select all
// On a refresh we do not care about message parsing errors
if (sizeof($message_parser->warn_msg) && $refresh)
{
$message_parser->warn_msg = array();
}
So all error messages returned by the message parser are silently ignored.
~H