Unverified Commit fe08b97e authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(xml) Fix code sniffer error

issue #6114
Showing with 1 addition and 1 deletion
+1 -1
...@@ -137,7 +137,7 @@ class xml ...@@ -137,7 +137,7 @@ class xml
// See if the key is already taken. // See if the key is already taken.
if (!isset($current[$data['tag']])) { if (!isset($current[$data['tag']])) {
// New Key // New Key
$current[$data['tag']] = $result; $current[$data['tag']] = $result;
$repeated_tag_index[$data['tag'].'_'.$data['level']] = 1; $repeated_tag_index[$data['tag'].'_'.$data['level']] = 1;
if ($priority == 'tag' and $attributes_data) { if ($priority == 'tag' and $attributes_data) {
$current[$data['tag']. '_attr'] = $attributes_data; $current[$data['tag']. '_attr'] = $attributes_data;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment