mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix syntax layout
This commit is contained in:
parent
e78a464002
commit
8fab7d5afb
1 changed files with 6 additions and 3 deletions
|
|
@ -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
|
||||
)
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue