Changeset 2040
- Timestamp:
- 02/13/2008 09:57:20 PM (9 months ago)
- Location:
- trunk/modules/shirc
- Files:
-
- 1 removed
- 3 modified
-
config/database.php (modified) (1 diff)
-
config/shirc.php (deleted)
-
controllers/shirc.php (modified) (1 diff)
-
libraries/ShIRC.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/shirc/config/database.php
r2039 r2040 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 3 $config[' shirc'] = array3 $config['kirc'] = array 4 4 ( 5 5 'benchmark' => FALSE, -
trunk/modules/shirc/controllers/shirc.php
r2039 r2040 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 3 class Shirc_Controller extends Controller {3 class Kirc_Controller extends Controller { 4 4 5 5 public function index() -
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
