send_confirmation_code -> sendConfirmationCode

This commit is contained in:
Craig Andrews
2010-08-31 00:08:28 -04:00
parent 1eccd2a4bd
commit a70cceaddd
3 changed files with 6 additions and 6 deletions

View 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;
}
}