Fix Fake_Irc to store data to send, not raw socket data to send

This commit is contained in:
Luke Fitzgerald 2010-07-09 01:21:33 -07:00
parent 2f585076c0
commit 63107beb8c
1 changed files with 1 additions and 19 deletions

View File

@ -35,24 +35,6 @@ class Fake_Irc extends Phergie_Driver_Streams {
public $would_be_sent = null;
private function send($command, $args = '') {
// Add the command
$buffer = strtoupper($command);
// Add arguments
if (!empty($args)) {
// Apply formatting if arguments are passed in as an array
if (is_array($args)) {
$end = count($args) - 1;
$args[$end] = ':' . $args[$end];
$args = implode(' ', $args);
} else {
$args = ':' . $args;
}
$buffer .= ' ' . $args;
}
$this->would_be_sent = $buffer . "\r\n";
$this->would_be_sent = array($command, $args);
}
}