|
| A R C H I V E D M E S S A G E |
|
Subject: > being converted to > |
| Posted: 06/17/2004 at 2:20:33 pm |
| By: slayer60 |
| Hi, I'm having a problem with the ">" being converted to ">" when the form email the body of the submission. I have been using version 1.3 and that didn't convert that value. What do I need to do to keep it from converting the greater than symbol?
Thanks. | |
|
|
Subject: Re: > being converted to > |
| Posted: 06/17/2004 at 2:26:14 pm |
| By: slayer60 |
| Okay, this page is converting it the opposite way. It is converting > to "> ;" without the space. | |
|
|
Subject: Re: > being converted to > |
| Posted: 06/17/2004 at 2:26:52 pm |
| By: slayer60 |
| Okay, it is converting it to "& g t ;" without the spaces. | |
|
|
Subject: Re: > being converted to > |
| Posted: 06/17/2004 at 2:53:34 pm |
| By: Seth Knorr |
| You will see two lines of text in bizmail.cgi that look like this:
$value =~ s|& lt;|\& lt\;|g;
$value =~ s|& gt;|\& gt\;|g;
YOU SHOULD BE ABLE TO DO A "edit: find" in notepad.
Just comment these two lines out like so:
#$value =~ s|& lt;|\& lt\;|g;
#$value =~ s|& gt;|\& gt\;|g;
I added the space after the & so it would show up.
AND YOU WILL BE ALL SET
Seth | |
|
|
Subject: Re: > being converted to > |
| Posted: 06/17/2004 at 3:09:51 pm |
| By: slayer60 |
| Worked like a charm.
Thanks. | |
|
|