Hi there.
Is it possible, that there is an error in the file "manager > processors > unpublish_content.processor.php"?
I think, that the invokeEvent is written wrong.
Instead of
$modx->invokeEvent("OnDocUnpublished",array("docid"=>$id));
it should be
$modx->invokeEvent("OnDocUnPublished",array("docid"=>$id));
with a capitelized "P".
At least that's how it is written in the database "sytem_eventnames" and I can't call any function in a plugin when using
case 'OnDocUnpublished':
or
case 'OnDocUnPublished':
Sorry for my bad English. I hope you get what I'm up to...