Index: openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl,v diff -u -r1.12 -r1.13 --- openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl 13 Oct 2003 16:01:39 -0000 1.12 +++ openacs-4/packages/acs-admin/www/apm/version-i18n-process-2.tcl 13 Oct 2003 16:37:48 -0000 1.13 @@ -17,7 +17,12 @@ if { [info exists skip_button] } { # The user wants to skip the file so remove it from the file and redirect # to processing the next one - ad_returnredirect "version-i18n-process?[export_vars -url {version_id {files:multiple {[lrange $files 1 end]}} file_action:multiple}]" + set remaining_files [lrange $files 1 end] + if { [llength $remaining_files] > 0 } { + ad_returnredirect "version-i18n-process?[export_vars -url {version_id {files:multiple $remaining_files} file_action:multiple}]" + } else { + ad_returnredirect "version-i18n?[export_vars -url {version_id}]" + } ad_script_abort }