We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 240b378 + aeabaf3 commit 11b7fd4Copy full SHA for 11b7fd4
app/code/core/Mage/Catalog/controllers/ProductController.php
@@ -126,6 +126,8 @@ public function viewAction()
126
} elseif (!$this->getResponse()->isRedirect()) {
127
$this->_forward('noRoute');
128
}
129
+ } elseif (Mage::getIsDeveloperMode()) {
130
+ Mage::printException($e);
131
} else {
132
Mage::logException($e);
133
app/code/core/Mage/Log/Model/Visitor.php
@@ -258,6 +258,7 @@ public function saveByRequest($observer)
258
259
260
try {
261
+ $this->initServerData();
262
$this->setLastVisitAt(Varien_Date::now());
263
$this->save();
264
$this->_session->setVisitorData($this->getData());
0 commit comments