]> git.mxchange.org Git - friendica-addons.git/commitdiff
typo in variable name
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 9 Sep 2021 12:23:43 +0000 (14:23 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 9 Sep 2021 12:23:43 +0000 (14:23 +0200)
nitter/nitter.php

index 13b823b4f5854a58e1b8d657c814c93a4bbc8722..28bd985762957e6cc8779ebd1bc049be4b841cd4 100644 (file)
@@ -65,11 +65,11 @@ function nitter_render(&$a, &$o)
        $nitter = DI::config()->get('nitter', 'server', 'https://nitter.net');
        if (strstr($o['html'], 'https://mobile.twitter.com')) {
                $o['html'] = str_replace('https://mobile.twitter.com', $nitter, $o['html']);
-               $replace = true;
+               $replaced = true;
        }
        if (strstr($o['html'], 'https://twitter.com')) {
                $o['html'] = str_replace('https://twitter.com', $nitter, $o['html']);
-               $replace = true;
+               $replaced = true;
        }
        if ($replaced) {
                $o['html'] .= '<hr><p>' . DI::l10n()->t('Links to Twitter in this posting were replaced by links to the Nitter instance at %s', $nitter) . '</p>';