diff options
| author | André Noack <noack@data-quest.de> | 2023-03-22 14:57:54 +0000 |
|---|---|---|
| committer | David Siegfried <david.siegfried@uni-vechta.de> | 2023-03-22 14:57:54 +0000 |
| commit | fd4be9d94001402f10d7ca92cb6d140741edfea1 (patch) | |
| tree | b79bb220ccbd9c768419a104b5bcb757e25c8614 /lib/export | |
| parent | 82967ed6c8946c2611c46026fc2b9e6d9bb6623d (diff) | |
Resolve #2420 "Userexport CSV: freie Datenfelder fehlen"
Closes #2420
Merge request studip/studip!1613
Diffstat (limited to 'lib/export')
| -rw-r--r-- | lib/export/export_xml_func.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/export/export_xml_func.inc.php b/lib/export/export_xml_func.inc.php index 2021feb..a3be8c0 100644 --- a/lib/export/export_xml_func.inc.php +++ b/lib/export/export_xml_func.inc.php @@ -72,9 +72,9 @@ global $SOFTWARE_VERSION, $ex_type, $ex_sem, $range_name, $range_id; * @param string value for optional attribute "key" * @return string xml open tag */ -function xml_open_tag($tag_name, $tag_key = null) +function xml_open_tag($tag_name, $key = null) { - $xml_tag_string = rtrim(' ' . xml_attributes_to_string(compact('tag_key'))); + $xml_tag_string = rtrim(' ' . xml_attributes_to_string(compact('key'))); $xml_tag_string = "<{$tag_name}{$xml_tag_string}>\n"; return $xml_tag_string; } |
