prasathmani / tinyfilemanager

Single-file PHP file manager, browser and manage your files efficiently and easily with tinyfilemanager
https://tinyfilemanager.github.io
GNU General Public License v3.0
4.61k stars 1.63k forks source link

Column with filename becomes hidden because of quotes misplacement #1127

Open imThief opened 6 months ago

imThief commented 6 months ago

Hello

The subj is clearly visible on the screenshot: because of misplaced quotes browser treats any words in filename after first space as html tag's options. Because of that whole element becomes "hidden" if the filename contains such word. Screenshot_20231219_062542

I guess something one of this should do the trick: <td data-sort="<?php echo fm_enc($f) ?>"> <td data-sort=<?php echo '"'.fm_enc($f).'"' ?>> <td data-sort=<?php echo fm_enc(str_replace(' ','_',$f)) ?>>