Index: openacs-4/packages/acs-core-docs/www/variables.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/variables.html,v diff -u -r1.19 -r1.20 --- openacs-4/packages/acs-core-docs/www/variables.html 29 Jun 2004 15:50:16 -0000 1.19 +++ openacs-4/packages/acs-core-docs/www/variables.html 5 Jul 2004 14:25:00 -0000 1.20 @@ -3,7 +3,7 @@ by OpenACS documentation staff.

Date and Time Variables

Starting with OpenACS 5.0 and the introduction of acs-lang, we recommend retrieving date/time information from the database in - ANSI format and then using lc_time_fmt to format it for display.

Example�12.1.�Getting datetime from the database ANSI-style

db_multirow -extend { mydate_pretty } {
+    ANSI format and then using lc_time_fmt to format it for display.

Example�12.1.�Getting datetime from the database ANSI-style

db_multirow -extend { mydate_pretty } {
     select to_char(mydate, 'YYYY-MM-DD HH24:MI:SS') as mydate_ansi,
           ...
     ...