Hello everyone.
I am using SQL Server as a database.
An error occurred while editing the survey answer including the date question.
I looked it up in the debugger and found that an error occurred due to the format of the date.
Call to a member function format() on boolean
\limesurvey\application\controllers\admin\dataentry.php(711),line 711
Code:
$datetimeobj = DateTime::createFromFormat("!Y-m-d H:i:s", $idrow[$fname['fieldname']]);
It seems that it will work if you rewrite it as follows, but is there any effect other than the function to edit answer?
Code:
$datetimeobj = DateTime::createFromFormat("!Y-m-d H:i:s.u", $idrow[$fname['fieldname']]);