diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-04-23 17:59:31 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-04-23 18:15:34 +0200 |
commit | 8fab7d5afb099a99aab81df7b0f44e3a1eb0016f (patch) | |
tree | 73065a1181932c9ee043222d9a584c362827af7c /settings/ajax/getlog.php | |
parent | e78a4640022c9b5ce833f34de118dea4608cc560 (diff) | |
download | nextcloud-server-8fab7d5afb099a99aab81df7b0f44e3a1eb0016f.tar.gz nextcloud-server-8fab7d5afb099a99aab81df7b0f44e3a1eb0016f.zip |
fix syntax layout
Diffstat (limited to 'settings/ajax/getlog.php')
-rw-r--r-- | settings/ajax/getlog.php | 9 |
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 + ) +); |