Download & Extend

Renaming files can screw up the extension if (.) is missing at the end

Project:TinyBrowser
Version:6.x-1.x-dev
Component:User interface
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

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

Comments

#1

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