Go to app\code\core\Mage\Adminhtml\Block\System\Config\Form.php
find the following on line 463
$optionArray = $sourceModel->toOptionArray($fieldType == 'multiselect');
and replace it with the following:
if(is_object($sourceModel)){
$optionArray = $sourceModel->toOptionArray($fieldType == 'multiselect');
}
find the following on line 463
$optionArray = $sourceModel->toOptionArray($fieldType == 'multiselect');
and replace it with the following:
if(is_object($sourceModel)){
$optionArray = $sourceModel->toOptionArray($fieldType == 'multiselect');
}
No comments:
Post a Comment
Thanks for your comments.