summaryrefslogtreecommitdiffstats
path: root/settings/ajax/getlog.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/ajax/getlog.php')
-rw-r--r--settings/ajax/getlog.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php
index 02f4f37fd6a..da69a2863b7 100644
--- a/settings/ajax/getlog.php
+++ b/settings/ajax/getlog.php
@@ -13,6 +13,9 @@ $offset=(isset($_GET['offset']))?$_GET['offset']:0;
$entries=OC_Log_Owncloud::getEntries($count, $offset);
$data = array();
-OC_JSON::success(array(
- "data" => $entries,
- "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) != 0) ? true : false));
+OC_JSON::success(
+ array(
+ "data" => $entries,
+ "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) != 0) ? true : false
+ )
+);