While for allowed upload extensions the user was hinted to the
need of having to start the list with a space, here it was actually needed code-wise. I rewrote the code so the space was not needed and the documentation follows the actual behaviour.
This commit is contained in:
parent
d171a249c5
commit
b30bdc9833
@ -533,8 +533,10 @@ class IDF_Views_Source
|
|||||||
if (0 === strpos($fileinfo[0], 'text/')) {
|
if (0 === strpos($fileinfo[0], 'text/')) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
$ext = 'mdtext php-dist h gitignore diff patch'
|
$ext = 'mdtext php-dist h gitignore diff patch';
|
||||||
.Pluf::f('idf_extra_text_ext', '');
|
$extra_ext = trim(Pluf::f('idf_extra_text_ext', ''));
|
||||||
|
if (!empty($extra_ext))
|
||||||
|
$ext .= ' ' . $extra_ext;
|
||||||
$ext = array_merge(self::$supportedExtenstions, explode(' ' , $ext));
|
$ext = array_merge(self::$supportedExtenstions, explode(' ' , $ext));
|
||||||
return (in_array($fileinfo[2], $ext));
|
return (in_array($fileinfo[2], $ext));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user