Changeset 113
- Timestamp:
- 03/03/08 23:59:42 (9 months ago)
- Files:
-
- trunk/Phergie/Plugin/Autojoin.php (modified) (1 diff)
- trunk/Phergie/Plugin/Spellcheck.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Phergie/Plugin/Autojoin.php
r71 r113 28 28 $channels = $this->getPluginIni('channels'); 29 29 if (!empty ($channels)) { 30 $this->doJoin(implode(' ', preg_split('#[, ]+#', $channels)));30 $this->doJoin(implode(',', preg_split('#[, ]+#', $channels))); 31 31 } 32 32 break; trunk/Phergie/Plugin/Spellcheck.php
r107 r113 71 71 $message = $this->event->getArgument(1); 72 72 73 if (preg_match('#(\S+)\s +\(sp\??\)#i', $message, $m)) {73 if (preg_match('#(\S+)\s*\(sp\??\)#i', $message, $m)) { 74 74 $word = $m[1]; 75 75 if (!pspell_check($this->pspell, $word)) {