You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/libraries/classes/Display/Results.php b/libraries/classes/Display/Results.php
index 6ff0992919..fcfee0d0d5 100644
--- a/libraries/classes/Display/Results.php+++ b/libraries/classes/Display/Results.php@@ -2950,7 +2950,9 @@ class Results
// even for a string type
// for decimal numeric is returning 1
// have to improve logic
- if (($meta->numeric == 1 && $meta->type !== 'string') || $meta->type === 'real') {+ // Nullable text fields and text fields have the blob flag+ $isNumericAndNotBlob = $meta->numeric == 1 && $meta->blob == 0;+ if (($isNumericAndNotBlob && $meta->type !== 'string') || $meta->type === 'real') {
// n u m e r i c
$display_params['data'][$row_no][$i]
here is the patch, to be tested
real blob fields do not work for distinct values
Describe the bug
Distinct URLs are broken on text fields because they are detected as numeric
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Working links
Server configuration
The text was updated successfully, but these errors were encountered: