Index: openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl,v diff -u -N -r1.91 -r1.92 --- openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 21 Oct 2017 10:59:35 -0000 1.91 +++ openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 22 Dec 2017 13:26:15 -0000 1.92 @@ -2161,7 +2161,7 @@ transaction_code will be caught automatically and process control will transfer to error_code_block with a variable errmsg set. The error_code block can then clean up after the error, such as presenting a usable error message to the user. Following the execution of error_code_block the transaction will be aborted. - If you want to explicity abort the transaction, call db_abort_transaction + If you want to explicitly abort the transaction, call db_abort_transaction from within the transaction_code block or the error_code block.

Example 1:
Index: openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl,v diff -u -N -r1.6 -r1.7 --- openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 29 Aug 2017 15:14:52 -0000 1.6 +++ openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 22 Dec 2017 13:26:15 -0000 1.7 @@ -2231,11 +2231,11 @@ if {[info exists data] && [string length $data]} { if {![info exists name]} { - error "Cannot upload file without specifing form variable -name" + error "Cannot upload file without specifying form variable -name" } if {![info exists filename]} { - error "Cannot upload file without specifing -filename" + error "Cannot upload file without specifying -filename" } if {$mime_type eq "*/*" || $mime_type eq ""} { Index: openacs-4/packages/acs-admin/www/apm/package-add-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/apm/package-add-2.tcl,v diff -u -N -r1.13 -r1.14 --- openacs-4/packages/acs-admin/www/apm/package-add-2.tcl 7 Aug 2017 23:47:45 -0000 1.13 +++ openacs-4/packages/acs-admin/www/apm/package-add-2.tcl 22 Dec 2017 13:30:57 -0000 1.14 @@ -38,7 +38,7 @@ package_key_unique -requires {package_key} { if {[apm_package_registered_p $package_key] } { ad_complain "The package key, $package_key, you have requested -is already registerd to another package." +is already registered to another package." } }