Changeset 123
- Timestamp:
- 03/05/08 02:23:33 (9 months ago)
- Files:
-
- trunk/Phergie/Plugin/Toggle.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Phergie/Plugin/Toggle.php
r82 r123 33 33 public function onDoMute($plugin) 34 34 { 35 if ($instance = $this->get Instance($plugin)) {35 if ($instance = $this->getPlugin($plugin)) { 36 36 $instance->muted = true; 37 37 $this->doPrivmsg($this->event->getSource(), 'Muted '.$plugin.'.'); … … 43 43 public function onDoUnmute($plugin) 44 44 { 45 if ($instance = $this->get Instance($plugin)) {45 if ($instance = $this->getPlugin($plugin)) { 46 46 $instance->muted = false; 47 47 $this->doPrivmsg($this->event->getSource(), 'Unmuted '.$plugin.'.');