[eluser]devbro[/eluser]
[quote author="alboyd" date="1251432536"]Any reason you can't change your code to this:
Code:
if(count($_POST)===0 && count($_FILES) > 0)//it will prevent the form_validation from working
{
//add a dummy $_POST
$_POST['DUMMY_ITEM'] = '';
parent::set_rules($field,$label,$rules);
unset($_POST['DUMMY_ITEM']);
}
And the same for the "run" function.
It seems to work for me so far I haven't found a problem with this?[/quote]
I just incorporated that change into my code.

it is now version 2.1