Fix duration in nextmatch row did not show correct value

This commit is contained in:
nathan 2023-01-05 10:24:49 -07:00
parent 578f2fc4b1
commit 233b2f472c

View File

@ -89,7 +89,7 @@ class Date extends Transformer
*/ */
public function set_row_value($cname, array $expand, array &$data) public function set_row_value($cname, array $expand, array &$data)
{ {
if($this->type == 'date-duration') if($this->type == 'et2-date-duration')
{ {
return; return;
} }
@ -161,7 +161,8 @@ class Date extends Transformer
{ {
$form_name = self::form_name($cname, $this->id, $expand); $form_name = self::form_name($cname, $this->id, $expand);
if(!$this->is_readonly($cname, $form_name) && $this->type != 'date-since') // date-since is always readonly if(!$this->is_readonly($cname, $form_name) && !in_array($this->type, ['et2-date-since',
'date-since'])) // date-since is always readonly
{ {
$value = self::get_array($content, $form_name); $value = self::get_array($content, $form_name);
$valid =& self::get_array($validated, $form_name, true); $valid =& self::get_array($validated, $form_name, true);