mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
Fixed XML parsing error of ampersand '&' for study description
Ampersand within study description was causing error messages in rdf files while XML parsing. Now this is fixed (by wrapping with CDATA)
This commit is contained in:
+1
-1
@@ -130,7 +130,7 @@ if($studiengang_kz!=0)
|
||||
{
|
||||
$stg_obj = new studiengang();
|
||||
$stg_obj->load($studiengang_kz);
|
||||
$xml.='<studiengang_bezeichnung>'.$stg_obj->bezeichnung.'</studiengang_bezeichnung>';
|
||||
$xml .= '<studiengang_bezeichnung><![CDATA['. $stg_obj->bezeichnung. ']]></studiengang_bezeichnung>';
|
||||
}
|
||||
|
||||
if($titel!='')
|
||||
|
||||
Reference in New Issue
Block a user