Actions
Bug #55763
closedusing object as string in ResourceStorage->getUniqueName
Start date:
2014-02-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:
Description
I got this error while attaching file in RTE
"Object of class TYPO3\CMS\Core\Resource\Folder could not be converted to string"
it is caused by the call
if (!$this->driver->fileExistsInFolder($theDestFile, $folder)) {
which should look like:
if (!$this->driver->fileExistsInFolder($theDestFile, $folder->getIdentifier())) {
because $folder is an object.
Updated by Gerrit Code Review almost 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27412
Updated by Tymoteusz Motylewski almost 11 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 3119e34a704cc75ed2fa18a65d04ea4f9a03aa17.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed
Actions