I have function "action_index" and function "get_index" both exist in a controller_hybrid. when I do a normal page load, suppose it will go to "action_index" but it always go to "get_index".
example code:
public function action_index()
{
die('action_index');
}
public function get_index()
{
die('get_index');
}
Anyone can help me? I can't upgrade my code to v1.4 ( currently using v1.2.1 ).