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
Updated by krileon almost 14 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Due to missing API within Kunena, resolved with latest Kunena SVN (to be next release).
Updated by krileon almost 14 years ago
- File 2205.patch 2205.patch added
- Status changed from Feedback to Resolved
- Assignee changed from krileon to beat
- Target version set to CB 1.4.0
Added version check to ensure K1.6 is passed raw name (profile) instead of HTML name (list).
Updated by beat almost 14 years ago
- Status changed from Resolved to Feedback
- Assignee changed from beat to krileon
- % Done changed from 100 to 50
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
Updated by krileon almost 14 years ago
- Status changed from Feedback to Resolved
- Assignee changed from krileon to beat
- % Done changed from 50 to 100
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.
Updated by beat almost 14 years ago
- Status changed from Resolved to Closed
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):