diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-08-17 23:38:26 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-08-17 23:38:26 +0200 |
commit | d38929fb10b1a140586433c79f121b428d2b44ac (patch) | |
tree | 4399c15fb158f7d66506b1eda2e8abfccaf564c5 | |
parent | 29b6dd53a095fd4140bf68a5ba7a4fd57c04a82d (diff) | |
download | nextcloud-server-d38929fb10b1a140586433c79f121b428d2b44ac.tar.gz nextcloud-server-d38929fb10b1a140586433c79f121b428d2b44ac.zip |
Fix spacing of all touched lines.
-rw-r--r-- | apps/files/ajax/list.php | 2 | ||||
-rwxr-xr-x | settings/admin.php | 2 | ||||
-rw-r--r-- | settings/ajax/getlog.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index b2975790a10..c50e96b2429 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -10,7 +10,7 @@ OCP\JSON::checkLoggedIn(); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; -$doBreadcrumb = isset( $_GET['breadcrumb'] ); +$doBreadcrumb = isset($_GET['breadcrumb']); $data = array(); // Make breadcrumb diff --git a/settings/admin.php b/settings/admin.php index 6c01d4007de..869729a9e41 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -18,7 +18,7 @@ $forms=OC_App::getForms('admin'); $htaccessworking=OC_Util::ishtaccessworking(); $entries=OC_Log_Owncloud::getEntries(3); -$entriesremain=count(OC_Log_Owncloud::getEntries(4)) > 3; +$entriesremain = count(OC_Log_Owncloud::getEntries(4)) > 3; $tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 )); $tmpl->assign('entries', $entries); diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php index f160512b6ad..f092ddb7727 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 ) ); |