Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Unrecognized tag

Quote Reply
Unrecognized tag
Unrecognized tag ? Please Fix.
Quote Reply
Re: Unrecognized tag In reply to
Where? When how? Is it the one in the emails? If so, it has already been reported Wink

Andy

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: Unrecognized tag In reply to
Tongue
Quote Reply
Re: Unrecognized tag In reply to
Reenee might mean the one in the forum. Probably because they parse things like [laugh] when markup is on, anything in the [] gets validated and if its not an actual thing, it gets unrecognized tag. It mostly affects things like $values[$db_something], but turning markup off can stop the unrecognized tag thing.


Lavon Russell
LookHard Mods
lavon@lh.links247.net
Quote Reply
Re: Unrecognized tag In reply to
Jason should just add some checks so that if the contents of the square bracket begins with $ or a digit then it doesn't get parsed as unknown. Pretty much all perl code using [] either begin with $ or a digit.

Eg..... $values[$var] or $array[1]

(especially related to Links2 etc...)

That way you cam leave markup on.


Quote Reply
Re: Unrecognized tag In reply to
Quote:
Pretty much all perl code using [] either begin with $ or a digit.

Apart from regex Smile


Quote Reply
Re: Unrecognized tag In reply to
Hmmmm and a hash of arrays.......

Guess it's not such a good idea afterall......lol

Quote Reply
Re: Unrecognized tag In reply to
It's fixed, it's fixed! Cool

[foo]


Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: Unrecognized tag In reply to
Testing $forum[testing], $forum[$testing], [1], [2], [3]

Nice [work], $as[always], $jason!

Smile


Quote Reply
Re: Unrecognized tag In reply to
Good job Jason Smile


Lavon Russell
LookHard Mods
lavon@lh.links247.net
Quote Reply
Re: Unrecognized tag In reply to
Testing Testing Tongue

This post using Markup

if ($in{'id'}){
($in{$id} eq $values[$db_id]) or next LINE;
}
if ($in{'age'}){
($in{age} eq $values[$db_age]) or next LINE;
}
if ($in{'sex'}){
($in{$sex} eq $values[$db_sex]) or next LINE;
}
if ($in{'state'}){
($in{state} eq $values[$db_state]) or next LINE;
}

Yes it is, Thanks jagerman, paul, bmxer

Last edited by:

reenee: Sep 8, 2001, 11:35 PM