>Van: Laurens van Vliet [mailto:[email protected]]
> ...
> <div>
> <?php echo $this->action('barcode', 'label', null, array()); ?>
> </div>
> ...
This is probably not what you want... The action helper (labeled as evil)
includes the output of another action inside the view.
You would want somthing like
<img src="<?php echo $this->action(array('controller' => 'barcode', 'action'
=> 'label', 'default'); ?>" alt="barcode" />
Vincent de Lau
[email protected]
