Index: openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl,v diff -u -N -r1.37.2.2 -r1.37.2.3 --- openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl 3 Jan 2020 10:43:37 -0000 1.37.2.2 +++ openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl 3 Jul 2020 07:27:29 -0000 1.37.2.3 @@ -202,7 +202,7 @@ @param object_name The name to give the result content item and revision This procedure handles all mime_type details, creating a new item of the appropriate - type and stuffing the content into either the file system or the database depending + type and stuffing the content into either the filesystem or the database depending on "storage_type". The new revision is set live, and its item_id is returned to the caller. @@ -226,7 +226,7 @@ # DRB: Eventually we should allow for text storage ... (CLOB for Oracle) if { $storage_type ne "file" && $storage_type ne "lob" } { - return -code error "Imported content must be stored in the file system or as a large object" + return -code error "Imported content must be stored in the filesystem or as a large object" } if {$mime_type eq "*/*"} { @@ -556,7 +556,7 @@ @author Jeff Davis (davis@xarg.net) } { # make both lower since that is the convention. - # should never pass in anything that is not lower cased + # should never pass in anything that is not lowercased # already but just be safe. set mime_type [string tolower $mime_type]