Index: openacs-4/packages/acs-datetime/tcl/acs-datetime-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-datetime/tcl/acs-datetime-procs.tcl,v diff -u -r1.9 -r1.10 --- openacs-4/packages/acs-datetime/tcl/acs-datetime-procs.tcl 15 Aug 2003 14:51:13 -0000 1.9 +++ openacs-4/packages/acs-datetime/tcl/acs-datetime-procs.tcl 1 Sep 2003 08:45:37 -0000 1.10 @@ -39,10 +39,14 @@ } } -ad_proc dt_format { +ad_proc -deprecated dt_format { {-format "%Y-%m-%d %H:%M:%S" -gmt f} time } { + This proc should not be used, because it does not take internationalization into account. Use lc_time_fmt instead. + + @see lc_time_fmt +} { return [clock format [clock scan $time] -format $format -gmt $gmt] }