diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-03-03 22:56:42 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-03-03 23:14:36 +0100 |
commit | 376f350af21ea83bcf7db73ae24c9f3618bb96fe (patch) | |
tree | 72ea977e0b2b68a39153a8379a062fbd73a0d78b | |
parent | 0488968443ee6d94f0695cb5189f5ea9b4d343b3 (diff) | |
download | nextcloud-server-376f350af21ea83bcf7db73ae24c9f3618bb96fe.tar.gz nextcloud-server-376f350af21ea83bcf7db73ae24c9f3618bb96fe.zip |
Fix encoding settings ajax getlog
-rw-r--r-- | settings/ajax/getlog.php | 11 |
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)); |