Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

In this Discussion

Who's Online 18

CurtisOdenericgillettesarowlwpx00422 +13 guests

Plain HTML in postings after upgrade ?!

Hi all,

I just upgraded from 2.0.14 to 2.0.16, but something went wrong.
(I have done upgrades several times before).

Newer discussions show plain HTML-Tags in the postings. {br}, {div} and {p}-Tag.
It seems to affect postings that were made after i installed CLEditor some weeks ago.

Anyone who experienced this before or know a solution.

Thanx
Stefan

Comments

  • Posts: 148
    Updated above posting with information about CLEditor.
  • Posts: 148
    Uh, i guess i did wrong to upgrade directly from 2.0.14 to 2.0.16.

    But i'm not sure because i made a fresh upload of all the data and then dropped my conf and plugin files into the the fresh one.

    One of the pro's has a guess for me??

    Sorry for stressing, made it on a running board. :/
  • Posts: 148
    Ok found the solution. HtmLawd seemed to be deactivated after the upgrade.

    It didn't appear in the Dashboard > Plugins so i edited the config File manually.

    Just added:
    $Configuration['EnabledPlugins']['HtmLawed'] = 'HtmLawed';
  • TimTim
    Posts: 1,573
    Thanks Phreak. Not sure why this happened as none of us have experienced this issue.

    Vanilla Forums Senior Developer [GitHub, Twitter, About.me]

  • @Tim I encountered the exactly same issue after upgrading to 2.0.17.3

    But why the heck... I did not even know this plugin. After I added it manually to my conf.php, HTML was parsed. But there is no entry for such a Plugin in my /plugins/all list?! There's only the HTMLPurifier...

    Please clarify - because this affects some plugins I wrote. Thanks
  • Posts: 421
    HtmLawed is hidden on a brand new install of Vanilla. It seems to be due to a parameter in the plugin's PluginInfo:

    $PluginInfo['HtmLawed'] = array(
    'Description' => 'Adapts HtmLawed to work with Vanilla.',
    'Version' => '1.0',
    'RequiredApplications' => NULL,
    'RequiredTheme' => FALSE,
    'RequiredPlugins' => FALSE,
    'HasLocale' => FALSE,
    'Author' => "Todd Burry",
    'AuthorEmail' => 'todd@vanillaforums.com',
    'AuthorUrl' => 'http://vanillaforums.com/profile/todd',
    'Hidden' => TRUE
    );


    If you remove 'Hidden' => TRUE from the PluginInfo, the plugin appears in the plugin list.

    Why is it hidden?
  • It's hidden because it should be enabled by default. See the config-defaults.php
  • Posts: 421
    But, even when it's enabled, it's still "Hidden". And you should be able to disable and enable it on the fly whenever you want to. Removing 'Hidden' => TRUE solves everything.
Sign In or Register to comment.