Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthorGKSR
     
    when I use performAction() in my controller, its not automatically calling the specified action(add.tpl). Instead, its showing the default index.tpl

    code:
    function index()
    {
    $this->performAction('add');
    }

    Can I know why this is happening???
    • CommentAuthorGKSR
     
    Hi,

    Can I know why its redirecting to index.tpl instead of add.tpl?
    Please let me know???
    • CommentAuthorKaste
     

    if thats you're actual code, try $this->redirectToAction('add') instead of performAction and be nice.