When trying to import a csv file with bundle products and you receive this error:
Fatal error: Call to a member function getStoreId() on a non-object in
/home/website_username/public_html/app/code/core/Mage/Bundle/Model/Selection.php on line 73
Solution is here:
you will need to modify this page: app/code/core/Mage/Bundle/Model/Selection.php
on line 73
Change this code:
$storeId = Mage::registry('product')->getStoreId();
To this code:
$storeId = 0;//Mage::registry('product')->getStoreId();