ad_general_link_add

one of the documented procedures in this installation of the ACS
Usage:
ad_general_link_add   db   link_id   url   link_title   link_description   user_id   ip_address   approved_p
What it does:
Inserts a link into the general links system
Defined in: /web/philip/tcl/ad-general-links.tcl

Source code:



    ns_db dml $db "insert into general_links
(link_id, url, link_title, link_description, creation_time, creation_user, creation_ip_address, approved_p, last_approval_change)
values
($link_id, '[DoubleApos $url]', '[DoubleApos $link_title]', '[DoubleApos $link_description]', sysdate, $user_id, '$ip_address', '$approved_p', sysdate)"



philg@mit.edu