change default behavior of delete function

This commit is contained in:
root 2022-11-28 23:48:21 +01:00
parent f1fc105f49
commit 006437f670

View File

@ -210,7 +210,7 @@ class JsonDatabase implements IJsonUnflattener
return false;
if (!is_file($objPath))
return true;
return false;
return unlink($objPath);
}