Hi,
First time I report a bug here, so tell me if I'm doing something wrong.
In the settings of the Contact component, I can select a custom image for contact information like address, phone, mobile and so on. The media manager lists images and folders from the "/images" folder.
In the contact page (in the frontend), the previously selected image doesn't show up. I've took a look at the code and it seems to load the image from the "contacts" folder. The last parameter is for "relative". When set to true, it will check inside the template folder and the media folder.
/components/com_contact/contact/view.html.php (around line 119)
Code:
$image1 = JHtml::_('image', 'contacts/'.$params->get('icon_address', 'con_address.png'), JText::_('COM_CONTACT_ADDRESS').": ", NULL, true);
So according to the given example, it will search an image inside
/template/<your-template>/images/contacts/
/media/contacts/
/media/system/contacts
But as I said in the first place, it doesn't make sense, since the backend only allows the "images" folder.
Did I miss something ?
Thanks !