Hi, we are using your T3 Framework and the OSDownload Component all at a actual version.
at the first start we get the following message from the Framework:
error 0 - Cannot use object of type OSDownloadsViewItem as array
a Error Page was shown...
After a research we found a issue with the T3 Framework Plugin and we fixed that with following code change:
/plugins/system/t3/base-bs3/html/layouts/joomla/edit/params.php
//$form = $displayData['form']; // fixed Bug with Array's by Webmex
$form = $displayData->getForm();
$fieldSets = $form->getFieldsets('params');
if (empty($fieldSets))
{
$fieldSets = $form->getFieldsets('attribs');
}
if (empty($fieldSets))
{
return;
}
//$fieldSets = $displayData['fieldsets'];
$displayData = $displayData['params'];
Now the view is working but the custom fields are not shown. If i switch to protostar template everything is working correct. so the problem is in the template framework.
thanks