Missing warning icons
Posted: 24 Aug 2009, 02:34
I was missing the warning icons on Menu Item setup - live admin site only.
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)
Changed to this
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', '');
Code: Select all
$icon = JHTML::_('image', 'administrator/components/com_phocamenu/assets/images/icon-16-warning.png', '');