]> git.mxchange.org Git - friendica-addons.git/commitdiff
Fix PHP notice about $a->config['system']['url'] in langfilter
authorHypolite Petovan <mrpetovan@gmail.com>
Mon, 1 Jan 2018 22:17:15 +0000 (17:17 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 1 Jan 2018 22:17:15 +0000 (17:17 -0500)
- Simplify sprintf(t()) structure

langfilter/langfilter.php

index 0aa136205025bce34e496ba6a14f2322eb6e4169..dcf12dfd6e76136277923e30857cb88fa8bdb024 100644 (file)
@@ -122,7 +122,7 @@ function langfilter_prepare_body(App $a, &$b)
 
        // Never filter own messages
        // TODO: find a better way to extract this
-       $logged_user_profile = $a->config['system']['url'] . '/profile/' . $a->user['nickname'];
+       $logged_user_profile = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
        if ($logged_user_profile == $b['item']['author-link']) {
                return;
        }
@@ -177,6 +177,6 @@ function langfilter_prepare_body(App $a, &$b)
 
        if (!$spoken) {
                $rnd = random_string(8);
-               $b['html'] = '<div id="langfilter-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'langfilter-' . $rnd . '\'); >' . sprintf(t('unspoken language %s - Click to open/close'), $lang) . '</div><div id="langfilter-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
+               $b['html'] = '<div id="langfilter-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'langfilter-' . $rnd . '\'); >' . t('unspoken language %s - Click to open/close', $lang) . '</div><div id="langfilter-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
        }
 }