tags:

views:

46

answers:

1

Hi,

any time i write this:

$this->setTemplate('module/action');

I'm getting this error:

The template "module/actionSuccess.php" does not exist or is unreadable in "".

So.. how to set a template from another module ?

Javi

+3  A: 

According to API Documentation:

$this->setTemplate('action', 'module');
Crozin