Index: openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl,v diff -u -r1.29.2.9 -r1.29.2.10 --- openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl 6 Aug 2020 13:09:53 -0000 1.29.2.9 +++ openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl 28 Oct 2020 15:39:19 -0000 1.29.2.10 @@ -866,7 +866,7 @@ } else { set curriculum_bar "" } - if { [info commands ds_link] ne "" } { + if { [namespace which ds_link] ne "" } { set ds_link [ds_link] } else { set ds_link "" @@ -913,7 +913,7 @@ @see Documentation on the site master template for the proper way to standardize page footers } { - if { [info commands ds_link] ne "" } { + if { [namespace which ds_link] ne "" } { set ds_link [ds_link] } else { set ds_link "" @@ -3601,7 +3601,7 @@ @see "info commands" based idioms } { - if { [info commands $proc] ne "" } { + if { [namespace which $proc] ne "" } { $proc {*}$args } }