Forum OpenACS Q&A: Response to i cant change member state to user.

Collapse
Posted by Dayra Munoz on
Jonatan:

I found that the procedure "acs_user::change_state" appears in the community-core-proces.tcl file.  I changed the follow instruction:

}
            "deleted" {
                db_exec_plsql member_delete {
                    begin membership_rel.delete(rel_id => :rel_id); end;
                }

to this,

}
            "deleted" {
                db_exec_plsql member_delete {
                    begin membership_rel__delete(rel_id => :rel_id); end;
                }

but it is not worked.  I have compile this file?  How i compile it?

By