Posted by matulis on June 2, 2010 at 10:06pm
1 follower
Jump to:
| 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.