diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-01 13:20:42 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-01 13:20:42 -0400 |
commit | dbf23748dd3bda9f0c520e302876ef280d71f199 (patch) | |
tree | f24b8aab4ce3d6f0829f172dd50b64b2b0ee2c0c /IkiWiki | |
parent | cec45b69da7a12ff4c8e78a47d887d273d480251 (diff) | |
download | ikiwiki-dbf23748dd3bda9f0c520e302876ef280d71f199.tar ikiwiki-dbf23748dd3bda9f0c520e302876ef280d71f199.tar.gz |
call check_canedit
Needed to prevent uploads of locked pages as attachments.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/attachment.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/attachment.pm b/IkiWiki/Plugin/attachment.pm index 82fcdbb74..8babe2be2 100644 --- a/IkiWiki/Plugin/attachment.pm +++ b/IkiWiki/Plugin/attachment.pm @@ -65,6 +65,10 @@ sub formbuilder (@) { #{{{ } } + # Also check that the user is allowed to edit it by other + # policies. + IkiWiki::check_canedit($filename, $q, $params{session}, 1); + # Move the attachment into place. # Try to use a fast rename; fall back to copying. prep_writefile($filename, $config{srcdir}); |