[Pkg-owncloud-commits] [owncloud] 102/153: Move return to new line

David Prévot taffit at moszumanska.debian.org
Tue May 27 03:05:43 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 4fbfe077fb611bea2581556c52c068a3163c73b3
Author: Joas Schilling <nickvergessen at gmx.de>
Date:   Wed May 21 13:10:23 2014 +0200

    Move return to new line
---
 lib/private/preferences.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/private/preferences.php b/lib/private/preferences.php
index c000080..62ef908 100644
--- a/lib/private/preferences.php
+++ b/lib/private/preferences.php
@@ -213,7 +213,9 @@ class Preferences {
 	 * @return array Mapped values: userid => value
 	 */
 	public function getValueForUsers($app, $key, $users) {
-		if (empty($users) || !is_array($users)) return array();
+		if (empty($users) || !is_array($users)) {
+			return array();
+		}
 
 		$chunked_users = array_chunk($users, 50, true);
 		$placeholders_50 = implode(',', array_fill(0, 50, '?'));

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list