Fix board name export (phpBB)
authorTim Düsterhus <tim@bastelstu.be>
Wed, 5 Aug 2015 15:56:56 +0000 (17:56 +0200)
committerTim Düsterhus <tim@bastelstu.be>
Wed, 5 Aug 2015 15:56:56 +0000 (17:56 +0200)
files/lib/system/exporter/PhpBB3xExporter.class.php

index 2249acf51cdfdeab45a45eda231a6b0b0d36b95a..03a78124800ee83dc41a7832af4f94a7939351e2 100644 (file)
@@ -786,7 +786,7 @@ class PhpBB3xExporter extends AbstractExporter {
                                'parentID' => ($board['parent_id'] ?: null),
                                'position' => $board['left_id'],
                                'boardType' => ($board['forum_type'] == self::BOARD_TYPE_LINK ? Board::TYPE_LINK : ($board['forum_type'] == self::BOARD_TYPE_CATEGORY ? Board::TYPE_CATEGORY : Board::TYPE_BOARD)),
-                               'title' => $board['forum_name'],
+                               'title' => StringUtil::decodeHTML($board['forum_name']),
                                'description' => $board['forum_desc'],
                                'descriptionUseHtml' => 1, // cannot be disabled
                                'externalURL' => $board['forum_link'],