PDA

View Full Version : Template Modification


Boofo
05-01-2002, 05:29 PM
I'm working on an extra Admin options hack and I almost have it finished. I am running into a couple of last minute problems though. I am looking for a way to have a link that will open the template modifications and do a show all, all from one link. The code I have right now is:

<a href="template.php?s=<?php echo $session[sessionhash]; ?>&action=modify&expandset=1&gr">Modify Templates</a>

but that only opens the first level of it and not the show all. Can anyone tell me what I can do to have it show them all from this one link?

And I also have a form for seraching the templates at the bottom of the box I am putting this in but for some reason there is an extra space at the bottom of the box that I can't get rif of. How do I have the box end at the very bottom of the search templates option? Thank in advance.

Boofo
05-17-2002, 03:59 PM
I figured it out!

This code:
<a href="template.php?s=<?php echo $session[sessionhash]; ?>&action=modify&expandset=1&gr">Modify Templates</a>


Should be this code:
<a href="template.php?s=<?php echo $session[sessionhash]; ?>&action=modify&expandset=1&group=all">Modify Templates</a>


Talk about feeling stupid. :)