MyBB Community Forums

Full Version: Admin CP -> Plugin Instructions raw HTML
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone!

I noticed this error on my main forum, and figured it was a plugin that broke it, but its happening on a new forum I just installed, so, hopefully someone can help. I tried looking to see if someone had already fixed the issue, but either there isn't anything, or I was using the wrong keywords!

Anyway,

My plugin information is not parsing the HTML, its just showing it raw. On this forum, I have the following installed:
Enhanced Account Switcher 2.1.7
Online Today 2.0.3
Plugin Uploader 1.2.2
Thread Description 1.1

Front-end Theme: BootBB
Back-end Theme: N/A

[Image: dbd38b658c89a81a1e310cb5a567c376.png]
Hrm, no one has any ideas?
There's a bug in MyBB 1.8.15 that causes raw HTML to be displayed in Settings: https://github.com/mybb/mybb/issues/3073
Thank you!!
(2018-05-11, 06:31 AM)ThistleProse Wrote: [ -> ]Thank you!!

@ThistleProse, for the meantime you can resolve as follows:

In a text editor open:

admin/modules/config/settings.php


Find line: 1520
$form_container->output_row(htmlspecialchars_uni($setting['title']), htmlspecialchars_uni($setting['description']), $setting_code, '', array(), array('id' => 'row_'.$element_id));

Change to:
$form_container->output_row(htmlspecialchars_uni($setting['title']), $setting['description'], $setting_code, '', array(), array('id' => 'row_'.$element_id));