Fix php notice "undefined index table_create_time" when setting displayed columns on results of a view

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2019-11-24 17:34:59 +01:00
parent 8f470aaa2f
commit 99a8b4ea4d
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -763,7 +763,7 @@ EOT;
$retval = $pmatable->setUiProp(
$property_to_set,
$property_value,
$_POST['table_create_time']
isset($_POST['table_create_time']) ? $_POST['table_create_time'] : null
);
if (gettype($retval) != 'boolean') {
$response = Response::getInstance();