September 22, 2022 release notes¶
UI¶
OPAL¶
array_to_string()
¶
array_to_string()
concatenates all the values in the array into a single string, optionally separated by a provided sep
value. The individual values are coerced to string
if they are not already strings.
int_div()
¶
int_div()
returns the integer portion of the result of dividend
divided by divisor
, truncating the remainder. (See also: mod()
.)
strcat()
renamed string_concat()
¶
The strcat()
function has been deprecated and renamed string_concat()
. Existing uses of strcat()
continue to operate as expected, but generate a warning.
unset_all_links
¶
unset_all_links
drops all foreign key links without specifying them individually by label (as is required for unset_link
).