http://www.concrete5.org/documentation/developers/pages/mvc-approach/

Permalink
Should the example

$this->set('catName', 'Mittens');

//And within the view, you can enter

My cat's name is !

really be
$this->set('catName', 'Mittens');

//And within the view, you can enter

My cat's name is $catName!

or is something more subtle going on?

notyetset
 
bbeng89 replied on at Permalink Reply
bbeng89
Yeah, I would say that's a typo in the docs. It should definitely be:

My cat's name is <?php echo $catName; ?>!