From b598ed8d0ca63d7e75a8102773b26f136015febb Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Sun, 17 Dec 2017 01:51:46 +0100 Subject: [PATCH] Fix: Convert CU Ref to upper case. --- lib/TclUpdates/GotuObject.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/TclUpdates/GotuObject.php b/lib/TclUpdates/GotuObject.php index 18ad8bd..6c6e8e6 100644 --- a/lib/TclUpdates/GotuObject.php +++ b/lib/TclUpdates/GotuObject.php @@ -28,7 +28,7 @@ class GotuObject { return $this->attrs; } - + public static function fromXmlParser(XmlParser $xp) { if (!$xp->validateGOTU()) { @@ -39,6 +39,7 @@ class GotuObject if ($attrs['fv'] == 'AAA000') { $attrs['fv'] = null; } + $attrs['curef'] = strtoupper($attrs['curef']); $g->attrs = $attrs; return $g; }