Index: openacs-4/packages/acs-admin/www/apm/version-reload.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/apm/version-reload.tcl,v diff -u -r1.2 -r1.2.2.1 --- openacs-4/packages/acs-admin/www/apm/version-reload.tcl 10 Sep 2002 22:21:59 -0000 1.2 +++ openacs-4/packages/acs-admin/www/apm/version-reload.tcl 5 Mar 2003 14:43:12 -0000 1.2.2.1 @@ -15,6 +15,8 @@ # files in $files. apm_mark_version_for_reload $version_id files +set file_id_list [list] + if { [llength $files] == 0 } { doc_body_append "There are no changed files to reload in this package.

" } else { @@ -29,7 +31,8 @@ } else { # This file isn't being watched right now - provide a link setting a watch on it. set files_to_watch_p 1 - doc_body_append " (watch this file)" + doc_body_append " (watch this file)" + lappend file_id_list $file_id } doc_body_append "\n" } @@ -40,6 +43,8 @@ doc_body_append "If you know you're going to be modifying one of the above files frequently, select the \"watch this file\" link next to a filename to cause the interpreters to reload the file immediately whenever it is changed.

+ (watch all above files) +

" }