Hi all,
i just wondered that i had to change the code to get the MyFirstPackage (see Development Tutorial) run.
mfp::note::add should called just with a title, but requires an item_id (in note-procs.tcl)
I changed the item_id to be optional.
# modified 2006/07/26 by nfl:
# -item_id:required to optional
# to match tutorial documentation
ad_proc -public mfp::note::add {
-title:required
-item_id
} {
This proc adds a note.
} {
if { [info exists item_id] eq 0 } {
set item_id [db_nextval acs_object_id_seq]
}
... following code unchanged.
Any comments from the gurus? ![]()
Nils
Request notifications