diff options
author | Kondou <kondou@ts.unde.re> | 2013-08-18 07:16:15 -0700 |
---|---|---|
committer | Kondou <kondou@ts.unde.re> | 2013-08-18 07:16:15 -0700 |
commit | c7af26ec84f2aecc8198f9a3a080950e89e5ec10 (patch) | |
tree | 3132ca40c99d16a8efd79b1a9ce6309e5545a5d4 /apps/files_external | |
parent | 3366bbeb8a91db9dd7f592bce8760156a23c0530 (diff) | |
parent | 9e8a6b704d4b65bb999d992f4900a9e184d952bd (diff) | |
download | nextcloud-server-c7af26ec84f2aecc8198f9a3a080950e89e5ec10.tar.gz nextcloud-server-c7af26ec84f2aecc8198f9a3a080950e89e5ec10.zip |
Merge pull request #4497 from owncloud/newlines_at_eof_kondou
Add newlines at the end of files
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/ajax/addMountPoint.php | 2 | ||||
-rw-r--r-- | apps/files_external/ajax/google.php | 2 | ||||
-rw-r--r-- | apps/files_external/js/google.js | 2 | ||||
-rw-r--r-- | apps/files_external/lib/google.php | 2 | ||||
-rw-r--r-- | apps/files_external/tests/google.php | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_external/ajax/addMountPoint.php b/apps/files_external/ajax/addMountPoint.php index fed2ddfcf3d..9100d47db3a 100644 --- a/apps/files_external/ajax/addMountPoint.php +++ b/apps/files_external/ajax/addMountPoint.php @@ -16,4 +16,4 @@ $status = OC_Mount_Config::addMountPoint($_POST['mountPoint'], $_POST['mountType'], $_POST['applicable'], $isPersonal); -OCP\JSON::success(array('data' => array('message' => $status)));
\ No newline at end of file +OCP\JSON::success(array('data' => array('message' => $status))); diff --git a/apps/files_external/ajax/google.php b/apps/files_external/ajax/google.php index e63b7cb07b9..2594a1780b3 100644 --- a/apps/files_external/ajax/google.php +++ b/apps/files_external/ajax/google.php @@ -39,4 +39,4 @@ if (isset($_POST['client_id']) && isset($_POST['client_secret']) && isset($_POST } } } -}
\ No newline at end of file +} diff --git a/apps/files_external/js/google.js b/apps/files_external/js/google.js index 7e111a95d98..b4be1c1dc41 100644 --- a/apps/files_external/js/google.js +++ b/apps/files_external/js/google.js @@ -126,4 +126,4 @@ $(document).ready(function() { } }); -});
\ No newline at end of file +}); diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index ef8dd6d8cad..e6cdacdec4f 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -587,4 +587,4 @@ class Google extends \OC\Files\Storage\Common { return false; } -}
\ No newline at end of file +} diff --git a/apps/files_external/tests/google.php b/apps/files_external/tests/google.php index 12faabb902d..d5495d49c5e 100644 --- a/apps/files_external/tests/google.php +++ b/apps/files_external/tests/google.php @@ -42,4 +42,4 @@ class Google extends Storage { $this->instance->rmdir('/'); } } -}
\ No newline at end of file +} |