Skip to content
Snippets Groups Projects
Commit 610b5d31 authored by David Maus's avatar David Maus
Browse files

Don't return 'missing value' on missing values

parent 7df13c05
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ class Record implements ArrayAccess
if (array_key_exists($name, $this->fields)) {
return $this->fields[$name];
} else {
return '{missing value}';
return null;
}
}
......
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