]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/remove.pm
make message a bit more generic
[ikiwiki.git] / IkiWiki / Plugin / remove.pm
index d4f1c7d66e50d66b685794c143b86c6bf86db4dc..f263db9b82e53ede60ff2e5dc494536993a31615 100644 (file)
@@ -21,7 +21,7 @@ sub check_canremove ($$$$) {
        # Must be a known source file.
        if (! exists $pagesources{$page}) {
                error(sprintf(gettext("%s does not exist"),
-               htmllink("", "", $page, noimageinline => 1)));
+                       htmllink("", "", $page, noimageinline => 1)));
        }
 
        # Must exist on disk, and be a regular file.
@@ -159,7 +159,10 @@ sub sessioncgi ($$) { #{{{
                        my @files;
                        foreach my $page (@pages) {
                                check_canremove($page, $q, $session, $q->param("attachment"));
-
+                               
+                               # This untaint is safe because of the
+                               # checks performed above, which verify the
+                               # page is a normal file, etc.
                                push @files, IkiWiki::possibly_foolish_untaint($pagesources{$page});
                        }