summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-08-17 23:39:26 +0200
committerAndreas Fischer <bantu@owncloud.com>2013-08-17 23:39:26 +0200
commit4f462e9b6f2a22b0cbba22fd9888322fa4c63a3d (patch)
tree16db25550dd3b250d534ee27da5c1792bce73ede /settings
parentd38929fb10b1a140586433c79f121b428d2b44ac (diff)
downloadnextcloud-server-4f462e9b6f2a22b0cbba22fd9888322fa4c63a3d.tar.gz
nextcloud-server-4f462e9b6f2a22b0cbba22fd9888322fa4c63a3d.zip
Add trailing comma for all touched array lines.
Diffstat (limited to 'settings')
-rw-r--r--settings/ajax/getlog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php
index f092ddb7727..34c8d3ce467 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
+ "remain" => count(OC_Log_Owncloud::getEntries(1, $offset + $count)) !== 0,
)
);