File Renaming does not change Title
I noticed that renaming a file or folder in KickAssetsAdmin changes the Name in the database but not the Title. This is a problem in the CMS when selecting a folder to insert an image from since the TinyMCE dropdown for selecting the image uses Title instead of Name. All the folders I created are listed as New-Folder still. I have fixed this by editing KickAssetAdmin.php.
public function updatefilename(SS_HTTPRequest $r) {
if($file = DataObject::get_by_id("File", (int) $r->requestVar('fileid'))) {
$file->setName($r->requestVar('new'));
$file->Title = $r->requestVar('new'); // This is the new line so that Title gets updated as well.
$file->write();
$template = $file instanceof Folder ? "Folder" : "File";
return $this->customise($this->getFields($file))->renderWith($template);
}
}
Especially bad when renaming folders. https://github.com/unclecheese/KickAssets/pull/34
Has anyone found that adding this fix causes multiple copies of the same file to be uploaded when using drag and drop from outside the browser?
I am having this same issue, when both creating new folders and renaming existing folders
Should be fixed now in 969e3c64b7218bdcdf329f5c982ef4d95662563c