Users might not notice (.) and delete it when renaming files.

Comments

matulis’s picture

Quick fix (tinybrowser/tinybrowser/edit.php, line 600):
Replace
$ext = end($nameparts);
with
$ext = '.' . end($nameparts);
No patch, sorry.