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:
parent
8f470aaa2f
commit
99a8b4ea4d
@ -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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user