aboutsummaryrefslogtreecommitdiff
path: root/lib/models/Courseware/StructuralElement.php
diff options
context:
space:
mode:
authorRon Lucke <lucke@elan-ev.de>2023-06-26 13:01:46 +0000
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2023-06-26 13:01:46 +0000
commitce7b07fc05c1812d90b06dc6f69697977f84e1bc (patch)
tree41fa7affd15757bc213e0170af17ffc4091ff2bf /lib/models/Courseware/StructuralElement.php
parent4099f6032f86b939892d7e360ea51bcd11957700 (diff)
fix #2556
Closes #2556 Merge request studip/studip!1875
Diffstat (limited to 'lib/models/Courseware/StructuralElement.php')
-rw-r--r--lib/models/Courseware/StructuralElement.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/models/Courseware/StructuralElement.php b/lib/models/Courseware/StructuralElement.php
index a4f5cf1..aee01a2 100644
--- a/lib/models/Courseware/StructuralElement.php
+++ b/lib/models/Courseware/StructuralElement.php
@@ -1035,7 +1035,7 @@ SQL;
return '';
}
$doc->addPage();
- $doc->Bookmark(htmlReady($this->title), $depth, 0, '', '', array(128,0,0));
+ $doc->Bookmark($this->title, $depth, 0, '', '', array(128,0,0));
$html = "<h1>" . htmlReady($this->title) . "</h1>";
$html .= $this->getContainerPdfExport();
$doc->writeHTML($html);