From b9b2e0269a2816d8708dcbaf82467d6200c830af Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 23 Apr 2013 14:39:28 +0200 Subject: [PATCH] fix logical issue while retrieving log via ajax --- settings/ajax/getlog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php index 141457e72a0..02f4f37fd6a 100644 --- a/settings/ajax/getlog.php +++ b/settings/ajax/getlog.php @@ -15,4 +15,4 @@ $data = array(); OC_JSON::success(array( "data" => $entries, - "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $offset)) != 0) ? true : false)); + "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) != 0) ? true : false)); -- 2.39.5