get_screenname -> getScreenname

This commit is contained in:
Craig Andrews 2010-09-03 17:46:42 -04:00
parent c54ef9b8b6
commit 44f1b94301
2 changed files with 3 additions and 3 deletions

View File

@ -47,14 +47,14 @@ class IMChannel extends Channel
function output($user, $text)
{
$text = '['.common_config('site', 'name') . '] ' . $text;
$this->imPlugin->sendMessage($this->imPlugin->get_screenname($user), $text);
$this->imPlugin->sendMessage($this->imPlugin->getScreenname($user), $text);
}
function error($user, $text)
{
$text = '['.common_config('site', 'name') . '] ' . $text;
$screenname = $this->imPlugin->get_screenname($user);
$screenname = $this->imPlugin->getScreenname($user);
if($screenname){
$this->imPlugin->sendMessage($screenname, $text);
return true;

View File

@ -208,7 +208,7 @@ abstract class ImPlugin extends Plugin
*
* @return string screenname of that user
*/
function get_screenname($user)
function getScreenname($user)
{
$user_im_prefs = $this->getUserImPrefsFromUser($user);
if ($user_im_prefs) {