From: Luke Fitzgerald Date: Tue, 20 Jul 2010 13:26:51 +0000 (-0700) Subject: Weaken send scope to protected X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1e5198645c0588cec11ff0bcd5e2864e88da3cdf;p=quix0rs-gnu-social.git Weaken send scope to protected --- 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); } }