Skip to content

Commit

Permalink
Fix board name export (phpBB)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimWolla committed Aug 5, 2015
1 parent f52c3f9 commit dafd324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/lib/system/exporter/PhpBB3xExporter.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ protected function exportBoardsRecursively($parentID = 0) {
'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'],
Expand Down

0 comments on commit dafd324

Please sign in to comment.