Page 1 of 1

Missing warning icons

Posted: 24 Aug 2009, 02:34
by BradC
I was missing the warning icons on Menu Item setup - live admin site only.
Image

The problem was an extra '/' in the image url
"//administrator/components/com_phocamenu/assets/images/icon-16-warning.png"

The fix was to remove the leading '/' from three files administrator/components/com_phocamenu/elements/phocalistwarning.php (line 30), phocamenuday.php (line 35) and phocamenulist.php (line 35)

Code: Select all

$icon = JHTML::_('image', '/administrator/components/com_phocamenu/assets/images/icon-16-warning.png', '');
Changed to this

Code: Select all

$icon = JHTML::_('image', 'administrator/components/com_phocamenu/assets/images/icon-16-warning.png', '');

Re: Missing warning icons

Posted: 24 Aug 2009, 10:43
by Jan
Hi, thank you for this info, I will take a look at it.

Jan

Re: Missing warning icons

Posted: 25 Aug 2009, 11:57
by Jan
Found, will be fixed in stable

Re: Missing warning icons

Posted: 27 Aug 2009, 01:57
by BradC
You can mark this as solved also Jan

Re: Missing warning icons

Posted: 27 Aug 2009, 20:14
by Jan
Ok