wp_break_attachments

one of the documented procedures in this installation of the ACS
Usage:
wp_break_attachments   attach   which
What it does:
Searches through $attach, a list of id/file_size/file_name/display lists, for items where display = $which. If any are found, generates a
.
Defined in: /web/philip/tcl/wp-defs.tcl

Source code:


    foreach item $attach {
	if { [lindex $item 3] == $which } {
	    return "<br clear=all>"
	}
    }
    return ""


philg@mit.edu