ad_approval_system_inuse_p

one of the documented procedures in this installation of the ACS
Usage:
ad_approval_system_inuse_p
What it does:
Returns 1 if the system is configured to use and approval system.
Defined in: /web/philip/packages/acs-core/admin-procs.tcl

Source code:


    if {[ad_parameter RegistrationRequiresEmailVerification] && [ad_parameter RegistrationRequiresApprovalP] } {
	return 1
    } else {
	return 0
    }


philg@mit.edu