Changeset 273 for trunk/Phergie/Plugin/Autojoin.php
- Timestamp:
- 08/01/08 09:58:43 (4 months ago)
- Files:
-
- trunk/Phergie/Plugin/Autojoin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Phergie/Plugin/Autojoin.php
r247 r273 60 60 * @return bool TRUE if dependencies are met, FALSE otherwise 61 61 */ 62 public static function checkDependencies(Phergie_Driver_Abstract $client, array $plugins)62 public static function checkDependencies(Phergie_Driver_Abstract $client, array $plugins) 63 63 { 64 64 $channels = $client->getIni('autojoin.channels'); 65 65 66 if (empty($channels)) { 66 return false;67 return 'Ini setting autojoin.channels must be filled-in'; 67 68 } 68 69