]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
send_confirmation_code -> sendConfirmationCode
authorCraig Andrews <candrews@integralblue.com>
Tue, 31 Aug 2010 04:08:28 +0000 (00:08 -0400)
committerCraig Andrews <candrews@integralblue.com>
Fri, 3 Sep 2010 21:50:28 +0000 (17:50 -0400)
lib/implugin.php
plugins/Irc/IrcPlugin.php
plugins/Irc/ircmanager.php

index 65dc559f93f86916b123d55e11f8c5e7e10815fd..84e0777b6d7d4fce95411fc67b33299300d9c6e7 100644 (file)
@@ -261,7 +261,7 @@ abstract class ImPlugin extends Plugin
      *
      * @return boolean success value
      */
-    function send_confirmation_code($screenname, $code, $user)
+    function sendConfirmationCode($screenname, $code, $user)
     {
         $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' .
           'If that\'s true, you can confirm by clicking on this URL: ' .
@@ -606,7 +606,7 @@ abstract class ImPlugin extends Plugin
     {
         if($transport == $this->transport)
         {
-            $this->send_confirmation_code($screenname, $code, $user);
+            $this->sendConfirmationCode($screenname, $code, $user);
             return false;
         }
     }
index f6aa09d5f22c88624a71b76f47b47e089d4cefdd..a5a343e02d0611be29d5fac606ae7e51c33474f8 100644 (file)
@@ -289,7 +289,7 @@ class IrcPlugin extends ImPlugin {
      * @param User $user user sending to
      * @return boolean success value
      */
-    public function send_confirmation_code($screenname, $code, $user, $checked = false) {
+    public function sendConfirmationCode($screenname, $code, $user, $checked = false) {
         $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' .
           'If that\'s true, you can confirm by clicking on this URL: ' .
           '%s' .
@@ -299,7 +299,7 @@ class IrcPlugin extends ImPlugin {
           $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code)));
 
         if ($this->regcheck && !$checked) {
-            return $this->checked_send_confirmation_code($screenname, $code, $user);
+            return $this->checked_sendConfirmationCode($screenname, $code, $user);
         } else {
             return $this->sendMessage($screenname, $body);
         }
@@ -314,7 +314,7 @@ class IrcPlugin extends ImPlugin {
     * @param User $user User sending to
     * @return boolean true on succes
     */
-    public function checked_send_confirmation_code($screenname, $code, $user) {
+    public function checked_sendConfirmationCode($screenname, $code, $user) {
         $this->fake_irc->doPrivmsg('NickServ', 'INFO '.$screenname);
         $this->enqueueOutgoingRaw(
             array(
index 9ffe1865e1b052d2acf80a084a45d811fc2a32b2..6066293311cf11ed4d56d7d9cd91b909bcd64423 100644 (file)
@@ -229,7 +229,7 @@ class IrcManager extends ImManager {
         if (isset($this->regChecksLookup[$usernick])) {
             if ($data['registered']) {
                 // Send message
-                $this->plugin->send_confirmation_code($screenname, $nickdata['code'], $nickdata['user'], true);
+                $this->plugin->sendConfirmationCode($screenname, $nickdata['code'], $nickdata['user'], true);
             } else {
                 $this->plugin->sendMessage($screenname, _m('Your nickname is not registered so IRC connectivity cannot be enabled'));