Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ The ExpressionEngine Discussion Forum Module allows you to create and manage a f

## Changelog

### 5.1.2

- Fixed PHP deprecation issues.
- Fixed a deprecated API call.

### 5.1.1

- Fixed template links in the control panel.
Expand Down
2 changes: 1 addition & 1 deletion system/user/addons/forum/addon.setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'author_url' => 'https://expressionengine.com/',
'name' => 'Forum',
'description' => 'Add a full-featured forum to your site',
'version' => '5.1.1',
'version' => '5.1.2',
'namespace' => 'ExpressionEngine\Addons\Forum',
'settings_exist' => true,

Expand Down
6 changes: 4 additions & 2 deletions system/user/addons/forum/mod.forum.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
*/
class Forum
{
public $version = '5.1.1';
public $build = '20230522';
public $version = '5.1.2';
public $build = '20251113';
public $use_site_profile = false;
public $search_limit = 250; // Maximum number of search results (x2 since it can include this number of topics + this number of posts)
public $return_data = '';
Expand Down Expand Up @@ -46,6 +46,8 @@ class Forum
public $is_table_open = false;
public $preview_override = false;
public $mbr_class_loaded = false;
public $MBR = null;
public $parse_php = false;
public $read_topics_exist = false;
public $SPELL = false;
public $spellcheck_enabled = false;
Expand Down
3 changes: 2 additions & 1 deletion system/user/addons/forum/mod.forum_core.php
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,8 @@ public function _feed_builder()

// Set the output type
ee()->output->out_type = 'feed';
ee()->config->core_ini['send_headers'] = 'y';
ee()->config->set_item('send_headers', 'y');

ee()->TMPL->template_type = 'feed';

// Load the requested theme file
Expand Down