I see two types of contructors in CI. For instance...
class Blog extends CI_Controller { function __construct() { parent::__construct(); } }
It looks like the first one is a php 5 implementation and second one is a php 4 implementation.