diff options
author | Jonas Smedegaard <dr@jones.dk> | 2015-01-23 13:01:10 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2015-01-23 13:01:10 +0100 |
commit | 70eb9c725bcb05d3dfccf855cc73bf178ee0adc7 (patch) | |
tree | 7d990e47273c6f541a05f7dddcb87d8a41099b64 | |
parent | 658635ffba844f67e65ddbe6e60bd9830aa8c54b (diff) |
Avoid maxsize limit (workaround for 'Use of uninitialized value in division' errors).
-rw-r--r-- | config/ikiwiki.setup.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ikiwiki.setup.in b/config/ikiwiki.setup.in index 8fa2bce..7b47781 100644 --- a/config/ikiwiki.setup.in +++ b/config/ikiwiki.setup.in @@ -30,6 +30,6 @@ diffurl: http://source.bynu.biks.dk/?p=bynu/content.git;a=blobdiff;f=[[file]];h= locked_pages: '*' multimarkdown: 1 #allowed_attachments: maxsize(2mb) and ((*.png and mimetype(image/png)) or (*.gif and mimetype(image/gif)) or (*.jpg and mimetype(image/jpeg))) -allowed_attachments: maxsize(2mb) and (*.png or *.gif or *.jpg) +allowed_attachments: (*.png or *.gif or *.jpg) tagbase: tag tag_autocreate_commit: 1 |