Skip to content
Extraits de code Groupes Projets
Valider c3576dbf rédigé par Benaka Moorthi's avatar Benaka Moorthi
Parcourir les fichiers

Fix regression in archive.php cron (via PHP renderer) caused by Archive.php...

Fix regression in archive.php cron (via PHP renderer) caused by Archive.php refactoring committed earlier.
parent a3f7a575
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -272,6 +272,18 @@ class Piwik_Archive_DataTableFactory
Piwik_Archive_DataCollection::removeMetadataFromDataRow($data);
$table->addRow(new Piwik_DataTable_Row(array(Piwik_DataTable_Row::COLUMNS => $data)));
} else {
// if we're querying numeric data, we couldn't find any, and we're only
// looking for one metric, add a row w/ one column w/ value 0. this is to
// ensure that the PHP renderer outputs 0 when only one column is queried.
// w/o this code, an empty array would be created, and other parts of Piwik
// would break.
if (count($this->dataNames) == 1) {
$name = reset($this->dataNames);
$table->addRow(new Piwik_DataTable_Row(array(
Piwik_DataTable_Row::COLUMNS => array($name => 0)
)));
}
}
$result = $table;
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter