We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54c4fc7 commit 0775715Copy full SHA for 0775715
app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php
@@ -190,8 +190,9 @@ public function saveAction()
190
catch (Mage_Core_Exception $e) {
191
$this->_getSession()->addError($e->getMessage());
192
}
193
- catch (Exception $e) {
194
- $this->_getSession()->addException($e, $this->__('An error occurred while updating the product(s) attributes.'));
+ catch (Throwable $e) {
+ Mage::logException($e);
195
+ $this->_getSession()->addError($this->__('An error occurred while updating the product(s) attributes.'));
196
197
198
$this->_redirect('*/catalog_product/', array('store'=>$this->_getHelper()->getSelectedStoreId()));
0 commit comments