Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 10a52cf

Browse files
author
Charles Ma
committed
BUG: refs #296 Fixed a bug in the logs
1 parent f9ad088 commit 10a52cf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/controllers/UploadController.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,10 +286,9 @@ public function saveuploadedAction()
286286
}
287287
else
288288
{
289-
if(!empty($pathClient))
289+
if(!empty($pathClient) && $pathClient != ";;")
290290
{
291291
$parentDao = $this->Folder->load($parent);
292-
$this->getLogger()->info($pathClient);
293292
$folders = explode('/', $pathClient);
294293
unset($folders[count($folders) - 1]);
295294
foreach($folders as $folderName)

0 commit comments

Comments
 (0)