summaryrefslogtreecommitdiff
path: root/lib/implugin.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-08-31 00:08:28 -0400
committerCraig Andrews <candrews@integralblue.com>2010-09-03 17:50:28 -0400
commita70cceadddef24dd7ca79e5809bdfc8c263d105f (patch)
tree56421f49efc5300de0151efb89fa7c1c7350ca7a /lib/implugin.php
parent1eccd2a4bd16ec03527407faa5b87982ab212852 (diff)
send_confirmation_code -> sendConfirmationCode
Diffstat (limited to 'lib/implugin.php')
-rw-r--r--lib/implugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/implugin.php b/lib/implugin.php
index 65dc559f9..84e0777b6 100644
--- a/lib/implugin.php
+++ b/lib/implugin.php
@@ -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;
}
}