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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-03-04 01:56:42 +0400
committerBart Visscher <bartv@thisnet.nl>2013-03-04 02:14:36 +0400
commit376f350af21ea83bcf7db73ae24c9f3618bb96fe (patch)
tree72ea977e0b2b68a39153a8379a062fbd73a0d78b /settings/ajax
parent0488968443ee6d94f0695cb5189f5ea9b4d343b3 (diff)
Fix encoding settings ajax getlog
Diffstat (limited to 'settings/ajax')
-rw-r--r--settings/ajax/getlog.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php
index 043124fa175..e1fc1689877 100644
--- a/settings/ajax/getlog.php
+++ b/settings/ajax/getlog.php
@@ -11,6 +11,15 @@ $count=(isset($_GET['count']))?$_GET['count']:50;
$offset=(isset($_GET['offset']))?$_GET['offset']:0;
$entries=OC_Log_Owncloud::getEntries($count, $offset);
+$data = array();
+foreach($entries as $entry) {
+ $data[] = array(
+ 'level' => OC_Util::sanitizeHTML($entry->level),
+ 'app' => OC_Util::sanitizeHTML($entry->app),
+ 'message' => OC_Util::sanitizeHTML($entry->message),
+ 'time' => OC_Util::sanitizeHTML($entry->time),
+ );
+}
OC_JSON::success(array(
- "data" => OC_Util::sanitizeHTML($entries),
+ "data" => $data,
"remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $offset)) != 0) ? true : false));