]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Weaken send scope to protected
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Tue, 20 Jul 2010 13:26:51 +0000 (06:26 -0700)
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Tue, 20 Jul 2010 13:26:51 +0000 (06:26 -0700)
plugins/Irc/Fake_Irc.php

index 9f2a611e68b50f57588bbc5292699e625a4518f4..a1e296e8b15168e936bd5dff44650147253a9764 100644 (file)
@@ -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);
     }
 }