diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-09-29 21:01:37 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-09-29 21:01:37 +0200 |
commit | 88b173d775556ea55a2cc730dfb1fc0a13ac5b72 (patch) | |
tree | c52746fe457931e12bf8a3e5c0c37563a514bb11 /inc | |
parent | fd90769209479bc82a9d6fc32d66a860fbd22e1b (diff) | |
download | rpg-88b173d775556ea55a2cc730dfb1fc0a13ac5b72.tar.gz rpg-88b173d775556ea55a2cc730dfb1fc0a13ac5b72.tar.bz2 |
fixed missing bracket
Ignore-this: 2891bb5aff5f63a2f71f0364e2a7cadc
darcs-hash:20090929190137-7ad00-090aa37de15cd6ef0ab0ee8f48fffd0445f42167.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/confutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/confutils.php b/inc/confutils.php index 5ad8385c4..9ec7a551e 100644 --- a/inc/confutils.php +++ b/inc/confutils.php @@ -33,7 +33,7 @@ function mimetype($file, $knownonly=true){ }else{ $ret = array($ext, $mtypes[$ext], false); } - elseif(!$knownonly){ + }elseif(!$knownonly){ $ret = array($ext, 'application/octet-stream', true); } } |