Gossamer Forum
Home : Products : Gossamer Links : Discussions :

This is odd, anyone know why?

Quote Reply
This is odd, anyone know why?
On my new links page I was getting this on the details link

Unknown%20Tag:%20'detailed_url'

This is what I have in my template for new now
<%if link_results_loop%>
<%loop link_results_loop%>
<%include link2.html%>
<%endloop%>
<%endif%>

I solved the problem by making a link2.html that does not have the <%detailed_url%> in it. I can live with this but it would be nice to have the details link on my new page as well.

<ul>
<li type="circle">
<span class="type">
<%Type%>
</span>
<a class="link" href="<%URL%>">
<%Title%>
</a><%if Description%>
<span class="descript">- <%Description%>
</span>
<a class="nw" href="<%URL%>" target="_blank">NW</a>
<%endif%>
</ul>
---
I'm a very boring lady, very, very boring.
Quote Reply
Re: [Cleo_] This is odd, anyone know why? In reply to
I'm not really sure if this is relevant but I think I had a similar issue (unknown tag error) and used pugdog's detail page cgi with the following code and it worked :

<a href="<%db_cgi_url%>/detail_page.cgi?ID=<%ID%>">

maybe this would work for you too ?

John
Significant Media
Quote Reply
Re: [Cleo_] This is odd, anyone know why? In reply to
Unfortunatly this is a bug. <%detailed_url%> doesn't seem to get defined in the <%links_loop%> loop. A simple way around this, is to use something like;

<%build_root_url%>/Detailed/<%ID%>.html

Hope that helps Smile

Cheers

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: [Andy] This is odd, anyone know why? In reply to
Worked perfect. :)

Once again thank you.
---
I'm a very boring lady, very, very boring.