Changeset 12
- Timestamp:
- 02/07/08 02:33:13 (5 years ago)
- Location:
- trunk/Phergie
- Files:
-
- 2 modified
-
Client/Driver.php (modified) (1 diff)
-
Event/Handler/Quit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Phergie/Client/Driver.php
r8 r12 38 38 39 39 /** 40 * Terminates any existing connection to the server. 40 * Terminates any existing connection to the server. Note that this 41 * should never be used by an event handler; doQuit should be called 42 * instead. 41 43 */ 42 44 public function disconnect(); -
trunk/Phergie/Event/Handler/Quit.php
r8 r12 11 11 { 12 12 if($event->getArgument(1)=='quit' && $this->isAdmin($event)) { 13 $this->d isconnect();13 $this->doQuit('by request of ' . $event->getNick()); 14 14 } 15 15 }