diff --git a/lib/TclUpdates/GotuObject.php b/lib/TclUpdates/GotuObject.php index 381a6fb..18ad8bd 100755 --- a/lib/TclUpdates/GotuObject.php +++ b/lib/TclUpdates/GotuObject.php @@ -35,7 +35,11 @@ class GotuObject return null; } $g = new self(); - $g->attrs = $xp->getAttrs(); + $attrs = $xp->getAttrs(); + if ($attrs['fv'] == 'AAA000') { + $attrs['fv'] = null; + } + $g->attrs = $attrs; return $g; } }