In file: ../administrator/components/com_phocagallery/models/phocagalleryc.php
At line 500:
Please add html_entity_decode function to the statement...
Original statement:
Code: Select all
$item->appendChild( $this->_buildXMLElement( 'description', JFilterOutput::cleanText(strip_tags($vrow->description ))));Code: Select all
$item->appendChild( $this->_buildXMLElement( 'description', html_entity_decode(JFilterOutput::cleanText(strip_tags($vrow->description )))));Some of the html editors will encode the unicode characters with html char ref, e.g. 叶 -> 叶
And if this does happen, the generated RSS file for Cooliris will carries 叶 in the description instead of the actual character, and is subsequently displayed in Cooliris as bunch of numbers and symbols.
In case, the user database already consist of hundreds of photos with description that was entered by the aforementioned editor, it will be a very painful job to reedit each of the photo with new editor just to get rid of the encoding - not wise.
This is the case happens to my website. After reading through some posts in your forum, I finally found that the RSS generator is in the above file. I had made the modification as described above, it solves my issue.
Please consider making this change in the next release, so that it help others that face the same problem as mine.
Thanks.
PS:
BTW, thanks for the great component. Phoca Gallery is one of the greatest components that ever developed for Joomla!.

