View Single Post
  #1 (permalink)  
Old 12-31-2007, 03:22 AM
conradwt conradwt is offline
Member
 
Join Date: Nov 2007
Posts: 33
Question 'Partial' not found in path'

Hi, how does one add a partial to the path? BTW, I have two partials on the page that are located in a different view (i.e. update). For example,

PHP Code:
 <?php echo $this->partial"update/_animal.phtml", array( 'animal' => $this->animal )); ?>

<?php echo $this->partialLoop"update/_recent.phtml"$this->recents ); ?>
However, I'm getting the following error message:

Fatal error: Uncaught exception 'Zend_View_Exception' with message 'helper 'Partial' not found in path'

I would like to ideally add whatever needs to be added to the boostrapper (i.e. index.php).

Thanks in advance,

-Conrad
Reply With Quote