]> git.mxchange.org Git - friendica.git/commitdiff
added spaces + some curly braces + some usage of dbm::is_result()
authorRoland Häder <roland@mxchange.org>
Thu, 26 Jan 2017 14:23:30 +0000 (15:23 +0100)
committerRoland Häder <roland@mxchange.org>
Thu, 10 May 2018 11:07:22 +0000 (13:07 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
mod/_well_known.php
mod/admin.php
mod/events.php
mod/poco.php
mod/share.php

index 782dc7a1b145973eb2a1b061701f89c37ac17d80..89097c0ff03939ba6e2d588a356bdc03add71c7b 100644 (file)
@@ -43,7 +43,8 @@ function wk_social_relay()
        $tags = [];
 
        if ($scope == SR_SCOPE_TAGS) {
-               $server_tags = Config::get('system', 'relay_server_tags');
+
+               $server_tags = get_config('system', 'relay_server_tags');
                $tagitems = explode(",", $server_tags);
 
                /// @todo Check if it was better to use "strtolower" on the tags
@@ -52,7 +53,7 @@ function wk_social_relay()
                        $tags[$tag] = $tag;
                }
 
-               if (Config::get('system', 'relay_user_tags')) {
+               if (get_config('system', 'relay_user_tags')) {
                        $terms = q("SELECT DISTINCT(`term`) FROM `search`");
 
                        foreach ($terms AS $term) {
index 1447dbaf185dc8313b8f60d005933429736b736f..39416dae54f43d467aa6540b09e520fe99704b4c 100644 (file)
@@ -2162,6 +2162,7 @@ function admin_page_themes(App $a)
                }
 
                $readme = null;
+
                if (is_file("view/theme/$theme/README.md")) {
                        $readme = Markdown::convert(file_get_contents("view/theme/$theme/README.md"), false);
                } elseif (is_file("view/theme/$theme/README")) {
index cad440f164c542feb6915868b0d49d18e997f277..bbd6337c3792c32a3b4b0f71df2568e5d1484793 100644 (file)
@@ -433,6 +433,7 @@ function events_content(App $a) {
                if (x($_REQUEST, 'location'))    {$orig_event['location']    = $_REQUEST['location'];}
                if (x($_REQUEST, 'start'))       {$orig_event['start']       = $_REQUEST['start'];}
                if (x($_REQUEST, 'finish'))      {$orig_event['finish']      = $_REQUEST['finish'];}
+               if (x($_REQUEST,'finish')) $orig_event['finish'] = $_REQUEST['finish'];
 
                $n_checked = ((x($orig_event) && $orig_event['nofinish']) ? ' checked="checked" ' : '');
                $a_checked = ((x($orig_event) && $orig_event['adjust'])   ? ' checked="checked" ' : '');
index 0728020eccab3292e6cc7428b616bc5b80bed149..183d7acd1271c0a61d1aee0fb7c5d946006aaad1 100644 (file)
@@ -43,8 +43,8 @@ function poco_init(App $a) {
                echo json_encode($ret);
                killme();
        }
+
        if ($a->argc > 1 && $a->argv[1] === '@global') {
-               // List of all profiles that this server recently had data from
                $global = true;
                $update_limit = date(DateTimeFormat::MYSQL, time() - 30 * 86400);
        }
index f67dd3d200c96aa74c37602e2a360cc439db4638..ed9b5f9d17c49ac48b06d870f599b0fce4d03cba 100644 (file)
@@ -23,10 +23,11 @@ function share_init(App $a) {
        } else {
                $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
 
-               if ($r[0]['title'])
+               if ($r[0]['title']) {
                        $o .= '[b]'.$r[0]['title'].'[/b]'."\n";
+               }
                $o .= $r[0]['body'];
-               $o.= "[/share]";
+               $o .= "[/share]";
        }
 
        echo $o;
@@ -34,17 +35,17 @@ function share_init(App $a) {
 }
 
 function share_header($author, $profile, $avatar, $guid, $posted, $link) {
-       $header = "[share author='".str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $author).
-               "' profile='".str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $profile).
-               "' avatar='".str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $avatar);
+       $header = "[share author='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $author).
+               "' profile='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $profile).
+               "' avatar='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $avatar);
 
        if ($guid) {
-               $header .= "' guid='".str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $guid);
+               $header .= "' guid='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $guid);
        }
        if ($posted) {
-               $header .= "' posted='".str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $posted);
+               $header .= "' posted='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $posted);
        }
-       $header .= "' link='".str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $link)."']";
+       $header .= "' link='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $link)."']";
 
        return $header;
 }