View Single Post
Old 06-14-2009, 07:49 PM   #3 (permalink)
Enfernikus
The Addict
 
Enfernikus's Avatar
 
Join Date: Jun 2008
Posts: 335
Thanks: 2
Enfernikus is on a distinguished road
Default

You are using call_user_func_array incorrectly, when you want to call a method within an object it is used like so

php Code:
call_user_func_array(array($dispatch, $action), $args);

Where $args would be everything after the part of the url which proclaims the action
Enfernikus is offline  
Reply With Quote