diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:14:47 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:29 -0400 |
commit | 9ccf65a3116c925b30c5c5d9b8926b26546c9694 (patch) | |
tree | 3b030ce13e2bba10294912a7f8271bd2ea6e7fa8 /plugins | |
parent | 054111bb545f3fc008f80eb54bfb706d15c57e01 (diff) |
get_user -> getUser
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Aim/AimPlugin.php | 2 | ||||
-rw-r--r-- | plugins/Irc/IrcPlugin.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Aim/AimPlugin.php b/plugins/Aim/AimPlugin.php index 225d92ad6..3a1799a2d 100644 --- a/plugins/Aim/AimPlugin.php +++ b/plugins/Aim/AimPlugin.php @@ -135,7 +135,7 @@ class AimPlugin extends ImPlugin { $info=Aim::getMessageInfo($message); $from = $info['from']; - $user = $this->get_user($from); + $user = $this->getUser($from); $notice_text = $info['message']; $this->handleIncoming($from, $notice_text); diff --git a/plugins/Irc/IrcPlugin.php b/plugins/Irc/IrcPlugin.php index b688e6140..55645d92f 100644 --- a/plugins/Irc/IrcPlugin.php +++ b/plugins/Irc/IrcPlugin.php @@ -229,7 +229,7 @@ class IrcPlugin extends ImPlugin { * @param boolean true on success */ protected function handle_channel_incoming($nick, $channel, $notice_text) { - $user = $this->get_user($nick); + $user = $this->getUser($nick); // For common_current_user to work global $_cur; $_cur = $user; |