Reputation: 844
<h3><?php echo $this->__('Details & Documents') ?></h3>
The above prints out as: Details & Documents
What is the proper syntax so that it prints as: Details & Documents
?
Thanks
Upvotes: 5
Views: 3193
Reputation: 101483
html_entity_decode should do what you want:
<h3><?php echo html_entity_decode($this->__('Details & Documents')) ?></h3>
Although there may be a Magento-specific setting for this.
Upvotes: 5