On a clean install of joomla the tinyMCE location for drag and drop images is left blank and it should default to save the drag and dropped images in /images
Since the addition of /files with #43532 the drag and dropped images are saved in the /files folder
That because when the upload path is empty in TinyMCE configuration then global Media ProviderManagerHelper is defaulting to files (previously was images):
That because when the upload
path
is empty in TinyMCE configuration then global Media ProviderManagerHelper is defaulting tofiles
(previously wasimages
):joomla-cms/administrator/components/com_media/src/Provider/ProviderManagerHelperTrait.php
Lines 153 to 155 in 28035af
We need to check for default folder in the plugin
joomla-cms/plugins/editors/tinymce/src/PluginTraits/DisplayTrait.php
Line 330 in 8cd35f2
to something like:
I will check later, if no one else will be faster :)