1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-20 01:03:26 +01:00

Set fv to null for full ROMs.

This commit is contained in:
Markus Birth 2017-12-12 01:50:56 +01:00
parent d9daa4ddee
commit c675eeacbf
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A

View File

@ -35,7 +35,11 @@ class GotuObject
return null; return null;
} }
$g = new self(); $g = new self();
$g->attrs = $xp->getAttrs(); $attrs = $xp->getAttrs();
if ($attrs['fv'] == 'AAA000') {
$attrs['fv'] = null;
}
$g->attrs = $attrs;
return $g; return $g;
} }
} }