attachment: Do not escape _ when determining attachment filenames.
authorJoey Hess <joey@kodama.kitenet.net>
Wed, 23 Jul 2008 18:58:39 +0000 (14:58 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Wed, 23 Jul 2008 18:58:39 +0000 (14:58 -0400)
IkiWiki/Plugin/attachment.pm
debian/changelog
doc/bugs/attachment:_escaping_underscores_in_filename__63__.mdwn

index 01d0d24784316b7302beee90f5df4d9580a5575d..3982c4883a39be7f12265bb62c538094390339d1 100644 (file)
@@ -102,7 +102,7 @@ sub formbuilder (@) { #{{{
                        }
                }
 
-               $filename=IkiWiki::titlepage(
+               $filename=IkiWiki::linkpage(
                        IkiWiki::possibly_foolish_untaint(
                                attachment_location($form->field('page')).
                                IkiWiki::basename($filename)));
index 7ab18a2c70eb348e6ec2ceac21ed34fdb4b726f3..c699f698b5a300a358049182822e8412f49f3761 100644 (file)
@@ -11,6 +11,7 @@ ikiwiki (2.55) UNRELEASED; urgency=low
   * Add allow_symlinks_before_srcdir config setting that can be used to avoid
     a security check that is a good safe default, but problimatic overkill in
     some situations.
+  * attachment: Do not escape _ when determining attachment filenames.
 
  -- Joey Hess <joeyh@debian.org>  Mon, 21 Jul 2008 11:35:46 -0400
 
index 509edd3fa7a27693e4f07c731e4d69f5553bc2c0..d7d101700481305062fcf0baf5781bb97c3a4f0b 100644 (file)
@@ -15,3 +15,5 @@ Is it a bug or security feature? --[[PaweÅ‚|ptecza]]
 >> and `myisam__95__vs__95__ndb.ods` files. When I click "Attachments" link,
 >> I can't see my uploaded files, because there are in another subdirectory
 >> (`myisam__95__vs__95__ndb` instead of `myisam_vs_ndb`).  --[[PaweÅ‚|ptecza]]
+
+> [[done]], uses `linkpage` now.