// Fixed stats bug (bad id for ajax request)

This commit is contained in:
Damien Metzger
2013-10-09 10:05:24 +02:00
parent 8c9dffd854
commit 38143e1245
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -504,7 +504,7 @@ class AdminStatsControllerCore extends AdminStatsTabController
else
{
$country = new Country($row['id_country'], $this->context->language->id);
$value = sprintf($this->l('%.1f%% %s'), $row['orders'], $country->name);
$value = sprintf($this->l('%d%% %s'), $row['orders'], $country->name);
}
ConfigurationKPI::updateValue('MAIN_COUNTRY', array($this->context->language->id => $value));
@@ -1272,7 +1272,7 @@ class AdminTranslationsControllerCore extends AdminController
$kpis[] = $helper->generate();
$helper = new HelperKpi();
$helper->id = 'box-country';
$helper->id = 'box-translations';
$helper->icon = 'icon-list';
$helper->color = 'color3';
$helper->title = $this->l('Front Office Translations');