Well, there's a couple hacks you could use to do this, one involving changing code, one not.
First, to do this in the code, you would change sub template_dir_select in GForum/Tools.pm. There is a line:
Code:
next if $_ eq '.' or $_ eq '..' or $_ eq 'admin' or $_ eq 'CVS' or not -d "$dir/$_";
You need to remove the "or $_ eq 'admin'" part.
The second way is nicer because it will keep working after upgrading, but will only work on unix systems - it involves making a symlink (something like "admin_editable") of the admin template directory. From the admin/templates/ directory:
Code:
ln -s admin admin_editable
(Hint: You can use Fileman for pseudo-shell access if you do not have telnet or SSH access).
Editing templates will still automatically create the local directory, allowing you to restore or request a diff if you accidentally change too much.
Jason Rhinelander
Gossamer Threads jason@gossamer-threads.com