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:
authormattab <matthieu.aubry@gmail.com>2014-11-26 08:47:58 +0300
committermattab <matthieu.aubry@gmail.com>2014-11-26 08:47:58 +0300
commitbe09521774ebbeeea1d79172a0fe6dab20d8f24b (patch)
treec14e18bab5c863d7531306cd624ab802e5a46888 /misc/others
parentb161911784f9ff91c4dc9be13437b83c10e76bc8 (diff)
link from dev changelog footer to changelog
Diffstat (limited to 'misc/others')
-rw-r--r--misc/others/api_rest_call.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/others/api_rest_call.php b/misc/others/api_rest_call.php
index c85d5c193e..67c3f9e4ba 100644
--- a/misc/others/api_rest_call.php
+++ b/misc/others/api_rest_call.php
@@ -20,11 +20,11 @@ if (!$content) {
print("Error, content fetched = " . $fetched);
}
-print("<h1>Keywords for the last month</h1>");
+print("<h1>Keywords for the last month</h1>\n");
foreach ($content as $row) {
$keyword = htmlspecialchars(html_entity_decode(urldecode($row['label']), ENT_QUOTES), ENT_QUOTES);
$hits = $row['nb_visits'];
- print("<b>$keyword</b> ($hits hits)<br>");
+ print("<b>$keyword</b> ($hits hits)<br>\n");
}