[SOLVED] Manufacturer image not showing on default manufacturer view

Started by justlikeef, November 04, 2011, 03:09:15 AM

Previous topic - Next topic

justlikeef

The manufacturer image does not display in the manufacturer default view, instead it displays the no image available image:

index.php?option=com_virtuemart&view=manufacturer&layout=default

The function getManufacturers in the manufacturer model takes three parameters, the third that specifies whether or not to populate each manufacturer's media, and it defaults to false.

The /components/com_virtuemart/views/manufacturer/view.html.php contains a call to that function, but only passes true in to the first two parameters.  Line 62 should be changed to:
$manufacturers = $model->getManufacturers(true, true, true);