Log in

View Full Version : postbit_legacy mod question, plz help


jarekn
06-16-2004, 10:49 AM
Hello,

In postbit_legacy template I currently have the following line:

<a target="_blank" href="http://server/cpg/thumbnails.php?album=lastupby&uid=$post[userid]">My Personal Photo Gallery</a><

What I need to do is add 10000 to the uid so that if userid is 1 the link should go to http://server/cpg/thumbnails.php?album=lastupby&uid=10001

Anyone?

Xenon
06-16-2004, 01:53 PM
hmm, you can try a trick licke that:

<if condition="$post[newid] = $post[userid] + 10000"></if>
<a target="_blank" href="http://server/cpg/thumbnails.php?album=lastupby&uid=$post[newid]">My Personal Photo Gallery</a>

not 100% sure, but i think it should work :)