Skip to content

Commit

Permalink
fix Plugin parent constructor issue (Issue #99 #103)
Browse files Browse the repository at this point in the history
  • Loading branch information
back2arie committed Jan 17, 2013
1 parent 719cc3e commit bfd1fe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/plugins/Plugin_Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Plugin_Controller extends MY_Controller {

function Plugin_Controller($login=TRUE)
{
parent::MY_Controller($login);
parent::__construct($login);

/* Prevent this controller from being called directly */
if (get_class() == get_class($this))
Expand Down Expand Up @@ -93,4 +93,4 @@ function initialize($params = array())
}

/* End of file Plugin_Controller.php */
/* Location: ./application/plugins/Plugin_Controller.php */
/* Location: ./application/plugins/Plugin_Controller.php */

0 comments on commit bfd1fe5

Please sign in to comment.