Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/DataTable/Manager.php')
-rw-r--r--core/DataTable/Manager.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/DataTable/Manager.php b/core/DataTable/Manager.php
index 8e3506187e..54976f014c 100644
--- a/core/DataTable/Manager.php
+++ b/core/DataTable/Manager.php
@@ -122,22 +122,22 @@ class Piwik_DataTable_Manager
*/
public function dumpAllTables()
{
- echo "<hr>Piwik_DataTable_Manager->dumpAllTables()<br>";
+ echo "<hr />Piwik_DataTable_Manager->dumpAllTables()<br />";
foreach($this->tables as $id => $table)
{
if(!($table instanceof Piwik_DataTable ))
{
- echo "Error table $id is not instance of datatable<br>";
+ echo "Error table $id is not instance of datatable<br />";
var_dump($table);
}
else
{
- echo "<hr>";
- echo "Table (index=$id) TableId = ". $table->getId() . "<br>";
+ echo "<hr />";
+ echo "Table (index=$id) TableId = ". $table->getId() . "<br />";
echo $table;
- echo "<br>";
+ echo "<br />";
}
}
- echo "<br>-- End Piwik_DataTable_Manager->dumpAllTables()<hr>";
+ echo "<br />-- End Piwik_DataTable_Manager->dumpAllTables()<hr />";
}
}