| From: John Morris | Date Sent: 2010-02-09 14:49:58 |
| Subject: Lasso 8.5 var and $ output different... | To: Lasso Talk |
| Navigation: First Message | Previous Message | Next Message | Last Message | |
Lasso 8.5
[
var('test1') = '—';
$test1;
var('test1');
]
returns:
—
—
Whats up with that?
Why is the $ output different?
Thanks,
John Morris
| From: Marc Pinnell | Date Sent: 2010-02-09 15:16:57 |
| Subject: Re: Lasso 8.5 var and $ output different... | To: Lasso Talk |
| Navigation: First Message | Previous Message | Next Message | Last Message | |
Interesting. Looks like one is html decoding and one is not?
Marc
On Feb 9, 2010, at 2:49 PM, John Morris wrote:
> Lasso 8.5
>
> [
> var('test1') = '—';
>
> $test1;
> var('test1');
> ]
>
>
> returns:
>
> —
> —
>
>
> Whats up with that?
>
> Why is the $ output different?
>
> Thanks,
> John Morris
> --
>
>
--
Marc Pinnell
1027 Design
PO Box 990872
Redding, CA 96099-0872
530.941.4706
fax: 866.232.5300
www.1027Design.com
| From: Bil Corry | Date Sent: 2010-02-09 18:15:56 |
| Subject: Re: Lasso 8.5 var and $ output different... | To: Lasso Talk |
| Navigation: First Message | Previous Message | Next Message | Last Message | |
John Morris wrote on 2/9/2010 2:49 PM:
> Lasso 8.5
>
> [
> var('test1') = '—';
>
> $test1;
> var('test1');
> ]
>
>
> returns:
>
> —
> —
>
>
> Whats up with that?
>
> Why is the $ output different?
It's always been like that, although Lasso 9 has changed behavior (it no longer HTML-encodes anything):
=========================================================
[
var('test1') = '—';
$test1;' ';
var('test1');
]
LP8 => — —
L9 => — —
=========================================================
- Bil