]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Make im confirmation codes work instead of sending an invalid URL
authorCiaran Gultnieks <ciaran@ciarang.com>
Wed, 21 Sep 2011 10:57:15 +0000 (11:57 +0100)
committerCiaran Gultnieks <ciaran@ciarang.com>
Wed, 21 Sep 2011 11:25:12 +0000 (12:25 +0100)
lib/implugin.php

index d096c41a28378794257242ac1af13b5b2911d0f4..5badf5343317d4572be8c2ac4fb57509fb945b65 100644 (file)
@@ -258,7 +258,6 @@ abstract class ImPlugin extends Plugin
      */
     function sendConfirmationCode($screenname, $code, $user)
     {
-        // @todo FIXME: parameter 4 is not being used. Should para3 and para4 be a markdown link?
         // TRANS: Body text for confirmation code e-mail.
         // TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename,
         // TRANS: %3$s is the display name of an IM plugin.
@@ -268,7 +267,7 @@ abstract class ImPlugin extends Plugin
           ' . (If you cannot click it, copy-and-paste it into the ' .
           'address bar of your browser). If that user is not you, ' .
           'or if you did not request this confirmation, just ignore this message.'),
-          $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code)));
+          $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', null, array('code' => $code)));
 
         return $this->sendMessage($screenname, $body);
     }