diff options
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/getlog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php index e7151419286..f160512b6ad 100644 --- a/settings/ajax/getlog.php +++ b/settings/ajax/getlog.php @@ -16,6 +16,6 @@ $data = array(); OC_JSON::success( array( "data" => $entries, - "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0) ? true : false + "remain"=>count(OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0 ) ); |