Skip to content
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Fixed

- Fix an issue where data are not formatted when coming from a field plugin's custom field.

## [2.15.10] - 2026-08-07

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions inc/commoninjectionlib.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,10 @@ private function reformatThirdPass()
//Get search option associated with the field
$option = self::findSearchOption($searchOptions, $field);

if ($option && !isset($option['checktype'])) {
$option['checktype'] = $option['datatype'];
}

// Check some types
switch ($option['checktype'] ?? 'text') {
case "date":
Expand Down