Creating text areas in manager.
MrLeN 0
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: Creating text areas in manager.
MrLeN
OP
0
From: -
From: -
Creating text areas in manager.
Ok great, I will add the fix soon - thanks
MrLeN
Ok great, I will add the fix soon - thanks
MrLeN
1 Re: Creating text areas in manager.
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Creating text areas in manager.
The <textarea> problem was fixed yesterday in the 1.8 development version
Here the fix. Open cadmin/admincore.php in an editor and find:
then add the following line:
The <textarea> problem was fixed yesterday in the 1.8 development version
Here the fix. Open cadmin/admincore.php in an editor and find:
function MkArea ($var, $var2, $var3)
{
then add the following line:
$var3 = htmlentities($var3);
I created a page in the page maneger which had three text areas. It worked fine, but when I went to "edit" that page and hit send, the manager drops the last two text areas.
Here is the code that I was using:
<!--Start Content-->
<H3>
newezone Banners and Buttons
</H3>
Please use the code as is. Do not modify.
<BR>
<BR>
<B>Button 1</B><BR>
<BR>
<IMG src="https://www.contentteller.com/ http://www.newezone.com/main/img/banners/button.gif" alt="newezone is an Online Community with a Webmaster *Twist*"><BR>
<BR>
Code:<BR>
<BR>
<TEXTAREA style="width: 400px; height: 100px;"><a href="https://www.contentteller.com/ http://www.newezone.com" target="_blank"><IMG src="https://www.contentteller.com/ http://www.newezone.com/main/img/banners/button.gif" alt="newezone is an Online Community with a Webmaster *Twist*" border="0"></a>
</TEXTAREA><BR>
<BR>
<B>Button 2</B><BR>
<BR>
<IMG src="https://www.contentteller.com/ http://www.newezone.com/main/img/banners/button2.gif" alt="newezone is an Online Community with a Webmaster *Twist*"><BR>
<BR>
Code:<BR>
<BR>
<TEXTAREA style="width: 400px; height: 100px;"><a href="https://www.contentteller.com/ http://www.newezone.com" target="_blank"><IMG src="https://www.contentteller.com/ http://www.newezone.com/main/img/banners/button2.gif" alt="newezone is an Online Community with a Webmaster *Twist*" border="0"></a>
</TEXTAREA><BR>
<BR>
<B>Button 3</B><BR>
<BR>
<IMG src="https://www.contentteller.com/ http://www.newezone.com/main/img/banners/button3.gif" alt="newezone is an Online Community with a Webmaster *Twist*"><BR>
<BR>
Code:<BR>
<BR>
<TEXTAREA style="width: 400px; height: 100px;"><a href="https://www.contentteller.com/ http://www.newezone.com" target="_blank"><IMG src="https://www.contentteller.com/ http://www.newezone.com/main/img/banners/button3.gif" alt="newezone is an Online Community with a Webmaster *Twist*" border="0"></a>
</TEXTAREA><BR>
<BR>
Try it. Create a page, then go and edit the page and see what happens when you hit send after editing.
MrLeN