sbillard: line 149 on class-image.php cannot just be `apply_filter('new_image', $this)` if you're wanting to modify `$this`.
It should be, instead, something like:
`$this->data = apply_filter('new_image', $this->data);`
Then, the plugin would be something along the lines of:
`
register_filter('new_image', 'add_admin_to_desc');
function add_admin_to_desc($obj) {
global $_zp_current_admin;
$obj['desc'] .= ' (uploaded by ' . $_zp_current_admin['name'] . ')';
return $obj;
}
`