]> git.mxchange.org Git - friendica-addons.git/commitdiff
fbpost: Bugfix: The link to the reauthentification was directed to the wrong plugin.
authorMichael Vogel <icarus@dabo.de>
Sun, 1 Dec 2013 09:57:27 +0000 (10:57 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 1 Dec 2013 09:57:27 +0000 (10:57 +0100)
fbpost/fbpost.php

index fb6ebcda2f33f0566d11171ff324890baac43d7d..cba2a0280317e538308facf04f3e31e9f75b11d0 100644 (file)
@@ -808,10 +808,10 @@ function fbpost_post_hook(&$a,&$b) {
  */
 function fbpost_enotify(&$app, &$data) {
        if (x($data, 'params') && $data['params']['type'] == NOTIFY_SYSTEM && x($data['params'], 'system_type') && $data['params']['system_type'] == 'facebook_connection_invalid') {
-               $data['itemlink'] = '/facebook';
+               $data['itemlink'] = '/fbpost';
                $data['epreamble'] = $data['preamble'] = t('Your Facebook connection became invalid. Please Re-authenticate.');
                $data['subject'] = t('Facebook connection became invalid');
-               $data['body'] = sprintf( t("Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."), $data['params']['to_name'], "[url=" . $app->config["system"]["url"] . "]" . $app->config["sitename"] . "[/url]", "[url=" . $app->config["system"]["url"] . "/facebook]", "[/url]");
+               $data['body'] = sprintf( t("Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."), $data['params']['to_name'], "[url=" . $app->config["system"]["url"] . "]" . $app->config["sitename"] . "[/url]", "[url=" . $app->config["system"]["url"] . "/fbpost]", "[/url]");
        }
 }