Skip to content

Commit

Permalink
8 ilias 41228
Browse files Browse the repository at this point in the history
  • Loading branch information
chlulei committed Nov 13, 2024
1 parent b15591a commit 82ecaca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Modules/Session/classes/class.ilSessionDataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,11 @@ public function readData(string $a_entity, string $a_version, array $a_ids): voi
break;
}
}
$clean_data = [];
foreach ($this->data as $rec) {
$clean_data[] = $this->stripTags($rec);
}
$this->data = $clean_data;
}

public function getXmlRecord(string $a_entity, string $a_version, array $a_set): array
Expand Down

0 comments on commit 82ecaca

Please sign in to comment.