Resolve "Final CMB Fixes" #1229

Merged
korina.cordero merged 102 commits from 270-final-cmb-fixes into master 2020-04-03 02:54:29 +00:00
Showing only changes of commit 39fdf318d4 - Show all commits

View file

@ -819,6 +819,10 @@ class JobOrder
public function getMeta($id)
{
// return null if we don't have it
if (!isset($this->meta[$id]))
return null;
return $this->meta[$id];
}