ticket_advs_multi_vars

one of the documented procedures in this installation of the ACS
Usage:
ticket_advs_multi_vars   prefix   codes
What it does:
generate a list suitable for ad_page_variables
Defined in: /web/philip/tcl/ticket-defs.tcl

Source code:

 
    set args {}
    foreach code $codes { 
        lappend args [list ${prefix}_$code -multiple-list]
        lappend args [list ${prefix}_$code {}]
    }
    return $args


philg@mit.edu