]> git.mxchange.org Git - friendica.git/commitdiff
Fixes for #3010:
authorRoland Häder <roland@mxchange.org>
Wed, 14 Dec 2016 08:49:52 +0000 (09:49 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 14 Dec 2016 08:49:52 +0000 (09:49 +0100)
- used static call, still App::get_baseurl() wraps it into an object-referencing
  call which seems to be a bit redundant?
- added spaces around dot (see one line below)

Signed-off-by: Roland Häder <roland@mxchange.org>
include/notifier.php
include/oembed.php

index 33eeee62fd5b9eaa6eea7f0091358f5d0ba56410..a55a60efd154357cc7b48cc2a2026cba4a21a0d8 100644 (file)
@@ -424,7 +424,6 @@ function notifier_run(&$argv, &$argc){
                                $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
                        }
 
-                       // Send a salmon to the parent author
                        $probed_contact = probe_url($thr_parent[0]['author-link']);
                        if ($probed_contact["notify"] != "") {
                                logger('Notify parent author '.$probed_contact["url"].': '.$probed_contact["notify"]);
index dbe934ff6de3c980f91d71ad8d7d8b6460e6b4f7..f860a545fb7b3717b8717013079401e6105724e9 100755 (executable)
@@ -264,7 +264,7 @@ function oembed_iframe($src, $width, $height) {
        }
        $width = '100%';
 
-       $s = $a->get_baseurl() . '/oembed/'.base64url_encode($src);
+       $s = App::get_baseurl() . '/oembed/' . base64url_encode($src);
        return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
 }