1
0

Small fixes and optimisations in parsing.

This commit is contained in:
2017-11-22 00:19:44 +01:00
parent 304dc11190
commit d90eed75f0
2 changed files with 16 additions and 9 deletions

View File

@@ -17,10 +17,7 @@ class GotuObject
return false;
}
$g = new self();
$g->attrs['type'] = $xp->getAttr('type');
$g->attrs['fv'] = $xp->getAttr('fv');
$g->attrs['tv'] = $xp->getAttr('tv');
$g->attrs['time'] = $xp->getReleaseTime();
$g->attrs = $xp->getAttrs();
return $g;
}
}