]> git.mxchange.org Git - friendica.git/commitdiff
Fix formatting all around
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 9 Dec 2017 18:42:02 +0000 (13:42 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sat, 9 Dec 2017 18:42:02 +0000 (13:42 -0500)
include/api.php
mod/contactgroup.php
mod/dfrn_confirm.php
mod/dfrn_request.php
mod/update_display.php
mod/update_network.php
src/Model/User.php

index e5963fb8fac871ec9f69d45c37784eb60cf29760..03e042955f8cb2f67880742e94e8803d54e0aa90 100644 (file)
@@ -4674,7 +4674,9 @@ function api_friendica_group_delete($type)
 {
        $a = get_app();
 
-       if (api_user() === false) throw new ForbiddenException();
+       if (api_user() === false) {
+               throw new ForbiddenException();
+       }
 
        // params
        $user_info = api_get_user($a);
@@ -4683,8 +4685,9 @@ function api_friendica_group_delete($type)
        $uid = $user_info['uid'];
 
        // error if no gid specified
-       if ($gid == 0 || $name == "")
+       if ($gid == 0 || $name == "") {
                throw new BadRequestException('gid or name not specified');
+       }
 
        // get data of the specified group id
        $r = q(
@@ -4693,8 +4696,9 @@ function api_friendica_group_delete($type)
                intval($gid)
        );
        // error message if specified gid is not in database
-       if (!DBM::is_result($r))
+       if (!DBM::is_result($r)) {
                throw new BadRequestException('gid not available');
+       }
 
        // get data of the specified group id and group name
        $rname = q(
@@ -4704,8 +4708,9 @@ function api_friendica_group_delete($type)
                dbesc($name)
        );
        // error message if specified gid is not in database
-       if (!DBM::is_result($rname))
+       if (!DBM::is_result($rname)) {
                throw new BadRequestException('wrong group name');
+       }
 
        // delete group
        $ret = group_rmv($uid, $name);
index 0c2d6a0cbec1f9292f296e42d3ba22360c0e87a6..0be57483865d0216a4abfea6e0e22e9fc3f187a9 100644 (file)
@@ -5,36 +5,38 @@ use Friendica\Database\DBM;
 
 require_once('include/group.php');
 
-function contactgroup_content(App $a) {
-       if (! local_user()) {
+function contactgroup_content(App $a)
+{
+       if (!local_user()) {
                killme();
        }
 
-       if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
+       if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
                $r = q("SELECT `id` FROM `contact` WHERE `id` = %d AND `uid` = %d and `self` = 0 and `blocked` = 0 AND `pending` = 0 LIMIT 1",
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if (DBM::is_result($r))
+               if (DBM::is_result($r)) {
                        $change = intval($a->argv[2]);
+               }
        }
 
-       if(($a->argc > 1) && (intval($a->argv[1]))) {
-
+       if (($a->argc > 1) && (intval($a->argv[1]))) {
                $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if (! DBM::is_result($r)) {
+               if (!DBM::is_result($r)) {
                        killme();
                }
 
                $group = $r[0];
                $members = group_get_members($group['id']);
                $preselected = array();
-               if(count($members))     {
-                       foreach($members as $member)
+               if (count($members)) {
+                       foreach ($members as $member) {
                                $preselected[] = $member['id'];
+                       }
                }
 
                if($change) {
index c999013eff121007f427610591ea21b1b56f40d0..ec670922a979f723e49fb480bebd0708ed133093 100644 (file)
@@ -508,7 +508,6 @@ function dfrn_confirm_post(App $a, $handsfree = null) {
 
                // Let's send our user to the contact editor in case they want to
                // do anything special with this new friend.
-
                if ($handsfree === null) {
                        goaway(System::baseUrl() . '/contacts/' . intval($contact_id));
                } else {
index bff1464ae47a1cb41db4e0750c9d3dca01ebbf17..a6436b67829d8c594ff02d3bb67497a6c161ab05 100644 (file)
@@ -194,8 +194,9 @@ function dfrn_request_post(App $a) {
                                        if(intval($def_gid))
                                                group_add_member(local_user(), '', $r[0]['id'], $def_gid);
 
-                                       if (isset($photo))
+                                       if (isset($photo)) {
                                                Contact::updateAvatar($photo, local_user(), $r[0]["id"], true);
+                                       }
 
                                        $forwardurl = System::baseUrl()."/contacts/".$r[0]['id'];
                                } else {
index 9dd3edf282d1f12413a980a235195839e2797afd..b0fbbbba637e1ca4d5eccedae12ab3c0c1afcbfe 100644 (file)
@@ -5,19 +5,18 @@
 use Friendica\App;
 use Friendica\Core\PConfig;
 
-require_once("mod/display.php");
 require_once("include/group.php");
+require_once "mod/display.php";
 
-function update_display_content(App $a) {
-
+function update_display_content(App $a)
+{
        $profile_uid = intval($_GET["p"]);
 
        header("Content-type: text/html");
        echo "<!DOCTYPE html><html><body>\r\n";
        echo "<section>";
 
-
-       $text = display_content($a,$profile_uid);
+       $text = display_content($a, $profile_uid);
        $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
        $replace = "<img\${1} dst=\"\${2}\"";
        $text = preg_replace($pattern, $replace, $text);
index a6c8173794546301ed8af159d42cd9bd37e9a868..6519490eb033df40ca7b37a8a61f2ea21138b100 100644 (file)
@@ -5,11 +5,11 @@
 use Friendica\App;
 use Friendica\Core\PConfig;
 
-require_once("mod/network.php");
 require_once("include/group.php");
+require_once "mod/network.php";
 
-function update_network_content(App $a) {
-
+function update_network_content(App $a)
+{
        $profile_uid = intval($_GET["p"]);
 
        header("Content-type: text/html");
index a66075cac6f997f36dbde639bafc0da3d1c48799..ae173fe73d6f3d27d68ebc703151f51d81efde13 100644 (file)
@@ -225,7 +225,6 @@ class User
                }
 
                // So now we are just looking for a space in the full name.
-
                $loose_reg = Config::get('system', 'no_regfullname');
                if (!$loose_reg) {
                        $username = mb_convert_case($username, MB_CASE_TITLE, 'UTF-8');
@@ -234,7 +233,6 @@ class User
                        }
                }
 
-
                if (!allowed_email($email)) {
                        $result['message'] .= t('Your email domain is not among those allowed on this site.') . EOL;
                }