diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:46:42 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:29 -0400 |
commit | 44f1b943016cb1a75153768838622c348238aaa1 (patch) | |
tree | 244503ead4faed0e8ea1e3402297a6a1d5096560 | |
parent | c54ef9b8b646c244a679527ff886ba3abfc92c61 (diff) |
get_screenname -> getScreenname
-rw-r--r-- | lib/imchannel.php | 4 | ||||
-rw-r--r-- | lib/implugin.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/imchannel.php b/lib/imchannel.php index a05229990..18ba3f55f 100644 --- a/lib/imchannel.php +++ b/lib/imchannel.php @@ -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; diff --git a/lib/implugin.php b/lib/implugin.php index f4504f525..72d1456f4 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -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) { |