Index: openacs-4/packages/acs-templating/tcl/util-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/util-procs.tcl,v diff -u -r1.43.2.18 -r1.43.2.19 --- openacs-4/packages/acs-templating/tcl/util-procs.tcl 29 Aug 2022 14:30:37 -0000 1.43.2.18 +++ openacs-4/packages/acs-templating/tcl/util-procs.tcl 28 Sep 2022 09:16:11 -0000 1.43.2.19 @@ -107,17 +107,15 @@ @param x the value to test - DEPRECATED: since October 2015 this proc is implemented via a - oneliner idiom that can be easily inlined. + DEPRECATED 5.10.1: since October 2015 this proc is implemented via the + standard Tcl idiom "string is true -strict ..." that can be easily inlined. - @see https://fisheye.openacs.org/changelog/OpenACS?cs=oacs-5-9%3Agustafn%3A20151001184401 @see string @return 0 if the variable can be interpreted as false; 1 for true if it can't. } { #expr {[string tolower $x] ni {0 f false n no off ""}} - #ns_log notice "TRUE [expr {[string tolower $x] ni {0 f false n no off ""}}] [string is true -strict $x]" string is true -strict $x }