Index: openacs-4/packages/acs-tcl/tcl/install-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/install-procs.tcl,v diff -u -r1.35.2.14 -r1.35.2.15 --- openacs-4/packages/acs-tcl/tcl/install-procs.tcl 27 Dec 2024 08:15:30 -0000 1.35.2.14 +++ openacs-4/packages/acs-tcl/tcl/install-procs.tcl 27 Dec 2024 08:29:47 -0000 1.35.2.15 @@ -1184,7 +1184,7 @@ variable ::install::xml::ids if {[catch { - if {[string is integer -strict $id]} { + if {[string is integer $id]} { set result $id } elseif {[info exists ids($id)]} { set result $ids($id) @@ -1194,7 +1194,7 @@ } err]} { error "$id is not an integer, is not defined in this install.xml, and is not an acs_magic_object" } - + ns_log notice install::xml::util::get_id maps <$id> to <$result> return $result }