summaryrefslogtreecommitdiffstats
path: root/system/init/init_trackback.php
blob: 6a3778bcc03e7e94befbfc2d1a78b2af08c3fd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php  if (!defined('BASEPATH')) exit('No direct script access allowed');

/**
 * Loads and instantiates trackback class
 *
 * @access	private called by the app controller
 */	

if ( ! class_exists('CI_Trackback'))
{
	require_once(BASEPATH.'libraries/Trackback'.EXT);
}

$obj =& get_instance();
$obj->trackback = new CI_Trackback();
$obj->ci_is_loaded[] = 'trackback';

?>