Hi there,
I am trying to put some google maps code into my CMS editor.
<div class="map"> <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=henderson+auckland&sll=-24.703615,-127.439308&sspn=6.455022,8.85498&ie=UTF8&hq=&hnear=Henderson,+Auckland,+New+Zealand&t=h&z=15&ll=-36.881826,174.631222&output=embed"></iframe><br /><small><a href="http://www.google.com/maps?f=q&source=embed&hl=en&geocode=&q=henderson+auckland&sll=-24.703615,-127.439308&sspn=6.455022,8.85498&ie=UTF8&hq=&hnear=Henderson,+Auckland,+New+Zealand&t=h&z=15&ll=-36.881826,174.631222" style="color:#0000FF;text-align:left">View Larger Map</a></small></div>
But when I save it to my data base it encodes some of the HTML entities and turns into this.
<div class="map"> <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=henderson+auckland&sll=-24.703615,-127.439308&sspn=6.455022,8.85498&ie=UTF8&hq=&hnear=Henderson,+Auckland,+New+Zealand&t=h&z=15&ll=-36.881826,174.631222&output=embed"></iframe><br /><small><a href="http://www.google.com/maps?f=q&source=embed&hl=en&geocode=&q=henderson+auckland&sll=-24.703615,-127.439308&sspn=6.455022,8.85498&ie=UTF8&hq=&hnear=Henderson,+Auckland,+New+Zealand&t=h&z=15&ll=-36.881826,174.631222" style="color:#0000FF;text-align:left">View Larger Map</a></small></div>
Even though I have set this in my config file, it still encodes the entities.
config.entities = false;
Please help me
Thanks
Tom