Skip to content
Snippets Groups Projects
Commit 6c1f5606 authored by Satish's avatar Satish
Browse files

Fixes #507 - Values in ListView not respecting user preferences

parent 1b5a21ca
No related branches found
No related tags found
No related merge requests found
......@@ -405,6 +405,10 @@ class ListViewController {
}
}
}
} elseif ($fieldDataType == 'double') {
if ($value) {
$value = CurrencyField::convertToUserFormat($value, null, true);
}
} elseif($fieldDataType == 'url') {
$matchPattern = "^[\w]+:\/\/^";
preg_match($matchPattern, $rawValue, $matches);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment