tinyfilemanager icon indicating copy to clipboard operation
tinyfilemanager copied to clipboard

Column with filename becomes hidden because of quotes misplacement

Open imThief opened this issue 2 years ago • 0 comments

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)) ?>>

imThief avatar Dec 19 '23 03:12 imThief