Index: openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl,v diff -u -N -r1.5 -r1.5.8.1 --- openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl 11 Apr 2003 03:58:09 -0000 1.5 +++ openacs-4/packages/acs-bootstrap-installer/db-init-checks-oracle.tcl 15 Jun 2005 23:57:13 -0000 1.5.8.1 @@ -41,7 +41,9 @@ # Date format is a globally defined value for Oracle, so we only need to check it once # for correctness. - if { [db_string sysdate "select sysdate from dual"] != [ns_fmttime [ns_time] "%Y-%m-%d"] } { + if { [db_string sysdate "select sysdate from dual"] != + [db_string sysdate2 "select to_char(sysdate,'YYYY-MM-DD') from dual"] } { + # See if NLS_DATE_FORMAT is set correctly append my_errors "

" append my_errors [db_string sysdate "select sysdate from dual"]