From fe08b97e3e82b3a5ceb6373308e39f2bc4f4b52f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Thu, 3 Sep 2020 17:47:29 +0200
Subject: [PATCH] :ambulance: fix(xml) Fix code sniffer error

issue #6114
---
 include/class_xml.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class_xml.inc b/include/class_xml.inc
index 1a886e6f1..19020b23d 100644
--- a/include/class_xml.inc
+++ b/include/class_xml.inc
@@ -137,7 +137,7 @@ class xml
         // See if the key is already taken.
         if (!isset($current[$data['tag']])) {
           // New Key
-          $current[$data['tag']]                        = $result;
+          $current[$data['tag']]                                = $result;
           $repeated_tag_index[$data['tag'].'_'.$data['level']]  = 1;
           if ($priority == 'tag' and $attributes_data) {
             $current[$data['tag']. '_attr'] = $attributes_data;
-- 
GitLab