Skip to content

Commit a8feadb

Browse files
committed
Merge pull request #45 from MageMill/master
PHP7 compatibility
2 parents 2bea209 + f3fd679 commit a8feadb

File tree

1 file changed

+1
-1
lines changed
  • app/code/community/Hackathon/MageMonitoring/Model/Widget/System

1 file changed

+1
-1
lines changed

app/code/community/Hackathon/MageMonitoring/Model/Widget/System/Abstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function getMagentoInfo($value)
138138
{
139139
if (is_null($this->_mageInfo)) {
140140
$this->_mageInfo['version'] = Mage::getVersion() .
141-
(method_exists(Mage, 'getEdition') ? (' ' . Mage::getEdition() . ' Edition') : '');
141+
(method_exists('Mage', 'getEdition') ? (' ' . Mage::getEdition() . ' Edition') : '');
142142
$statInfo = $this->getMagentoStatInfo();
143143
if (!is_null($statInfo)) {
144144
$this->_mageInfo = array_merge($this->_mageInfo, $statInfo);

0 commit comments

Comments
 (0)