diff options
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; |