Merge pull request #21053 from defrance/patch-198

php V8 warning
This commit is contained in:
Laurent Destailleur 2022-06-01 22:05:13 +02:00 committed by GitHub
commit 2f779dac8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,7 +273,7 @@ function dol_dir_list_in_database($path, $filter = "", $excludefilter = null, $s
"position" => (int) $obj->position,
"acl" => $obj->acl,
"share" => $obj->share,
"description" => isset($obj->description)?$obj->description:''
"description" => ($mode ? $obj->description : '')
);
}
$i++;