
NAME :: clear_read_access

SYNTAX :: clear_read_access(string target);

This functions is provided inside of the WORKROOM inherit so that
a target can be removed from the "read" level of access. If no target
is passed then the whole list will be wiped out.

   ----< SAMPLES >----

clear_read_access("larry");
       This will remove larry from the read access list.

clear_read_access();
        This removes the entire read access list.

