Actions
Bug #2205
closedForums integration plugin not displaying sidebar for Kunena 1.6 and greater
Description
Regardless of the mode selected they do not have an affect on Kunena 1.6 or greater.
Files
Actions
Added by krileon almost 14 years ago. Updated almost 14 years ago.
Description
Regardless of the mode selected they do not have an affect on Kunena 1.6 or greater.
Files
2205.patch (1.24 KB) 2205.patch | krileon, 24 January 2011 22:29 |
Due to missing API within Kunena, resolved with latest Kunena SVN (to be next release).
Added version check to ensure K1.6 is passed raw name (profile) instead of HTML name (list).
As it was working ok with Kunena 1.6.2 but not in 1.6.3 svn, not sure if fix should be made in CB...
So asked in Kunena chat:
strange, in beginner mode, in k1.6.2 no issues (that's what's on joomlapolis.com), but in 1.6.3-DEV there is that issue...
like if before it was expecting an html as username (with link), and now just a text that it htmlspecialchars
Sidebar was completely non-functional (1.6.0-2) and wasn't fixed until recently due to missing API. Pre-1.6.0 it was ok to pass an HTML based value and Kunena would handle it, but now Kunena (1.6.0 and greater) will only accept plain text. Is necessary that the alternate case passes plaintext username instead of HTML username as Kunena prepares its HTML.
Implemented in r 1381 as proposed but with:
if ( strcasecmp( $version, '1.6' ) >= 0 ) {
so it works in case of 1.7 too...
(Kunena 1.6.3 needed as main bug was in Kunena 1.6.0-2):