diff --git a/app/Mage.php b/app/Mage.php index ea98d1155c1b9..3a8b9b7162591 100644 --- a/app/Mage.php +++ b/app/Mage.php @@ -132,7 +132,7 @@ public static function getVersion() { $i = self::getVersionInfo(); return trim("{$i['major']}.{$i['minor']}.{$i['revision']}" . ($i['patch'] != '' ? ".{$i['patch']}" : "") - . "-{$i['stability']}{$i['number']}", '.-'); + . "-{$i['stability']}{$i['number']}{$i['edition']}", '.-'); } /** @@ -150,6 +150,7 @@ public static function getVersionInfo() 'patch' => '0', 'stability' => 'dev', 'number' => '29', + 'edition' => 'CE', ); }