If I set
Yii::app()->name = 'My brilliant brand™';
Then ™ is displayed rather than the TM symbol.
I can get around it by not using Yii:app()->name but I just wondered if there was another way?
Thanks, Russ
If I set
Yii::app()->name = 'My brilliant brand™';
Then ™ is displayed rather than the TM symbol.
I can get around it by not using Yii:app()->name but I just wondered if there was another way?
Thanks, Russ
The app name is Html encoded before display I think, so the only way I can see is if you use the actual TM character in the name.
Maybe
® ; // without the space
works but I’m not sure
@redrabbit - d’oh, the simplest ideas
That worked, cheers.
hehe!