From 41aacc2554fbc2a4db715e9029c0a0e37b01cc3c Mon Sep 17 00:00:00 2001 From: codecivil Date: Tue, 5 Sep 2023 10:56:10 +0200 Subject: [PATCH] data model modifier DERIVED --- nightly/core/functions/result_functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nightly/core/functions/result_functions.php b/nightly/core/functions/result_functions.php index 8e873a9..deef032 100644 --- a/nightly/core/functions/result_functions.php +++ b/nightly/core/functions/result_functions.php @@ -403,7 +403,7 @@ function sortArray($data, $field) $_stmt_array['arr_values'][] = $key; $_tmp_result = execute_stmt($_stmt_array,$conn)['result']; $keyreadable[$key] = explode(': ',$_tmp_result['keyreadable'][0])[0]; - $edittype[$tablekey] = $_tmp_result['edittype'][0]; + $edittype[$tablekey] = explode('; ',$_tmp_result['edittype'][0])[0]; //for getting rid of modifiers (MULTIPLE or DERIVED) } $table_results .= '
'.$keyreadable[$key].'
'; $row_right .= '
'; $ccount0++;