#!/usr/bin/perl
# Special reparent verb for admin does not have any security checks.
#use Mooix::Thing;
run sub {
	my $this=shift;
	%_=@_;
	
	# Don't let a someone spoof an admin that they own to call this method.
        if ($_{avatar} != $this) {
		fail "No!"; 
	}

	$this->super(avatar_reparent_ok => 1, @_);
}
