Skip to content
Snippets Groups Projects
Commit fd4be9d9 authored by André Noack's avatar André Noack Committed by David Siegfried
Browse files

Resolve #2420 "Userexport CSV: freie Datenfelder fehlen"

Closes #2420

Merge request studip/studip!1613
parent 82967ed6
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment