Keep ID out of customfield history change list

This commit is contained in:
nathangray 2019-05-08 10:48:02 -06:00
parent ff84674275
commit f2ae317771

View File

@ -97,6 +97,11 @@ class admin_cmd_customfield extends admin_cmd
unset($set[$key]);
unset($old[$key]);
}
else
{
// Make sure it's a string, not an int
$set[$key] = ''.$value;
}
}
}
$this->set = $set;