ug_footer

one of the documented procedures in this installation of the ACS
Usage:
ug_footer   admin_email
What it does:
Signs pages with group administrator email. Group administrator is person who administer groups content.
Defined in: /web/philip/tcl/user-group-defs.tcl

Source code:


    append result "
    <hr>
    "
    
    if { ![empty_string_p $admin_email] } {
	append result "
	<a href=\"mailto:$admin_email\"><address>$admin_email</address></a>
	"
    } else {
	append result "
	<a href=\"mailto:[ad_system_owner]\"><address>[ad_system_owner]</address></a>
	"
    }

    append result "
    </body>
    </html>
    "

    return $result


philg@mit.edu