Skip to content

Commit

Permalink
[FIX] MPOS version check for admin dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
MPOS123 committed Apr 15, 2015
1 parent 482fe18 commit 5e5f41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pages/admin/dashboard.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// Fetch version information
$version['CURRENT'] = array('DB' => DB_VERSION, 'CONFIG' => CONFIG_VERSION, 'CORE' => MPOS_VERSION);
$version['INSTALLED'] = array('DB' => $setting->getValue('DB_VERSION'), 'CONFIG' => $config['version'], 'CORE' => $online_versions['MPOS_VERSION']);
$version['INSTALLED'] = array('DB' => $setting->getValue('DB_VERSION'), 'CONFIG' => $config['version'], 'CORE' => MPOS_VERSION);
$version['ONLINE'] = array('DB' => $online_versions['DB_VERSION'], 'CONFIG' => $online_versions['CONFIG_VERSION'], 'CORE' => $online_versions['MPOS_VERSION']);

// Fetch our cron list $aMonitorCrons
Expand Down

0 comments on commit 5e5f41f

Please sign in to comment.