Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Article Manager 1:
$code$ Striping Out

 

 


jferry
User

Jul 24, 2002, 12:15 PM

Post #1 of 4 (3009 views)
Shortcut
$code$ Striping Out Can't Post

We have a subscription form on a template used in Article Manager with an odd piece of code that we can't change. The line is:

<INPUT TYPE=hidden NAME="owner_id_enc" VALUE="2400,$1$NkhNQ$alL9qDg3hNpt2svxlaRJr1">

When the page is published the $1$ is stripped from the code making the form inoperable.

Can you offer a solution.

Jferry


Luke
Staff / Moderator


Jul 24, 2002, 2:43 PM

Post #2 of 4 (3002 views)
Shortcut
Re: [jferry] $code$ Striping Out [In reply to] Can't Post

Here's a suggestion - you could use the HTML entity for outputting the dollar signs. The HTML entity for a dollar sign is &#36;

So your hidden field would look like this:

<INPUT TYPE=hidden NAME="owner_id_enc" VALUE="2400,&#36;1&#36;NkhNQ$alL9qDg3hNpt2svxlaRJr1">

Let me know if this works. :)
Luke Holzken
Product Development

(This post was edited by Luke on Jul 24, 2002, 2:44 PM)


jferry
User

Jul 25, 2002, 6:08 AM

Post #3 of 4 (2990 views)
Shortcut
Re: [Luke] $code$ Striping Out [In reply to] Can't Post

Luke,

The HTML entity for a dollar sign (&#36;) didn't work but I was able to create a work around by placing this particular form in a SSI. Seems to be working fine now. Thanks.

Was wondering what you opinion is regarding placing multiple SSI on a single page. Will several (4-6) SSI on a single page create problems?

Jferry


Luke
Staff / Moderator


Jul 25, 2002, 2:24 PM

Post #4 of 4 (2973 views)
Shortcut
Re: [jferry] $code$ Striping Out [In reply to] Can't Post

Every SSI that you add to a page will cause a very small delay when loading the page. However, adding 5 (or even 10) SSIs on a page shouldn't be a problem. :)

Strange... I was able to get a form working with <input type="hidden" name="test" value="&#36;">, and everything seemed fine.
Luke Holzken
Product Development