Changeset 2040 for trunk/modules/shirc/libraries/ShIRC.php
- Timestamp:
- 02/13/2008 09:57:20 PM (11 months ago)
- Files:
-
- 1 modified
-
trunk/modules/shirc/libraries/ShIRC.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/shirc/libraries/ShIRC.php
r2039 r2040 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 3 class ShIRC_Core {3 class Kirc_Core { 4 4 5 5 // Database instance … … 41 41 // Open the socket 42 42 $this->socket = fsockopen($this->config['server'], $this->config['port']); 43 44 // Set non-blocking streams 45 stream_set_blocking($this->socket, 0); 43 46 44 47 // Connect
