Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question Eliminate "Title:" before RSS subject lines

More
14 years 1 month ago #1 by fepa
How can I eliminate the "Title:" prefix that appears before every subject line in a Kunena RSS feed?

Please Log in or Create an account to join the conversation.

More
14 years 4 days ago - 14 years 4 days ago #2 by Mikote
Hello.

/components/com_kunena/lib/kunena.rss.php

Line 157:
Code:
echo ("<title>" . _GEN_SUBJECT . ": " . stripslashes(htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(htmlspecialchars($row->name)) . "</title>" . "\n");

Change by this:
Code:
echo ("<title>" . stripslashes(htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(htmlspecialchars($row->name)) . "</title>" . "\n");

Regards ;)

Miguel
Madrid (Spain)
Last edit: 14 years 4 days ago by Mikote.

Please Log in or Create an account to join the conversation.

Time to create page: 0.602 seconds