From 1e5198645c0588cec11ff0bcd5e2864e88da3cdf Mon Sep 17 00:00:00 2001 From: Luke Fitzgerald Date: Tue, 20 Jul 2010 06:26:51 -0700 Subject: [PATCH] Weaken send scope to protected --- plugins/Irc/Fake_Irc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Irc/Fake_Irc.php b/plugins/Irc/Fake_Irc.php index 9f2a611e68..a1e296e8b1 100644 --- a/plugins/Irc/Fake_Irc.php +++ b/plugins/Irc/Fake_Irc.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { class Fake_Irc extends Phergie_Driver_Streams { public $would_be_sent = null; - private function send($command, $args = '') { + protected function send($command, $args = '') { $this->would_be_sent = array($command, $args); } }