- Posts: 8
- Thank you received: 1
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question aspx. Image in Signature adds amp;
thank you very much for the wonderful new version of Kunena. Once I eliminated all other mootools-related modules and the Joomla-SEF it works just fine.
I even had to find out that finally you allow us to display dynamic pictures in the signature. Before that we could only display them in the announcements. Ideally that feature would be even better, if we could allow aspx-images only incoming from certain ip-addresses, in my example below: only starting with: 94.23.239.117
My question is, wether you have an idea, why Kunena changes the "&" to "&" if the code is embraced by img tags. It would be great, if you'd think about a workaround:
http://94.23.239.117/BloodBowlManager.WebSite/Signature2.aspx?leagueid=1782&Type=png&Team=Asgaad%20Hammer
94.23.239.117/BloodBowlManager.WebSite/S...Team=Asgaad%20Hammer
(configuration I cannot support you with, due to this error: Fatal error: Call to a member function data() on a non-object in .../administrator/components/com_kunena/admin.kunena.php on line 3292, but I think you are working on this already.)
Thanks and cheers
Philipp
Please Log in or Create an account to join the conversation.
Look in the file lib/parser.php how the [img][/img] things are processed...
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
I've looked into the file kunena.parser.php and might have spotted the area to be looked at, but have no idea what to do.
Can you give me a clue, please?
Thanks
Philipp
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Phoenigs wrote: (configuration I cannot support you with, due to this error: Fatal error: Call to a member function data() on a non-object in .../administrator/components/com_kunena/admin.kunena.php on line 3292, but I think you are working on this already.)
I had the same problem with Report Configuration Settings after upgrading Uddeim to 2.1 Stable
After disabling following, this report works, but something is wrong..:
admin.kunena.php row 3287:
if ( JComponentHelper::isEnabled('uddeim') && JFile::exists(JPATH_SITE.'/components/com_uddeim/uddeim.php') ) {
$xml_uddeim = JFactory::getXMLparser('Simple');
$xml_uddeim->loadFile(JPATH_ADMINISTRATOR.'/components/com_uddeim/uddeim.j15.xml');
$version = $xml_uddeim->document->version[0];
$uddeim = 'UddeIm: Installed (Version : '.$version->data().')';
} else {
$uddeim = 'UddeIm: Disabled or not installed';
Please Log in or Create an account to join the conversation.
This have to be the line. There is no other one being able to do so and the "&" is a HTML special char so it simply gets encoded. This should be no problem cause your webserver should interpretate both in the same way. If not I guess you have to fix it.
Please Log in or Create an account to join the conversation.