Hi, I'm calling a method of a library that I've created in symfony 1.2. If I don't call the library method in the action method, then the method in the action class works as it should, and it finds the template. But, if I call the library method in the action class, symfony tells me that it cannot find the template associated to the action method. Any suggestions?
|
|
|||
|
|
|
Did you try return sfView::NONE on your action code? |
||||
|
|
|
Returning sfView::NONE is telling Symfony to display nothing. The explicit return value sounds like the right approach but you probably want:
|
||
|
|
