diff options
Diffstat (limited to 'archives/html/includes')
| -rw-r--r-- | archives/html/includes/bottom_config.php | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/archives/html/includes/bottom_config.php b/archives/html/includes/bottom_config.php index b779e5c4..10e9d7c7 100644 --- a/archives/html/includes/bottom_config.php +++ b/archives/html/includes/bottom_config.php @@ -1,14 +1,11 @@ -</div></div> +<?php -<br class="pgClearBoth" /> +$tmpldir = $_SERVER['DOCUMENT_ROOT'] . "/../templates"; +$tpl =& new HTML_Template_Sigma($tmpldir."/html"); +$tpl->loadTemplateFile('bottom_config.html'); - </div> - <div id="pgFooter"> - <a href="http://www.postgresql.org/about/privacypolicy" class="navFooter">Privacy Policy</a> | PostgreSQL Archives hosted by <a href="http://www.commandprompt.com/">Command Prompt, Inc.</a> | Designed by <a href="http://www.tinysofa.com/">tinysofa</a><br /> - Copyright © 1996 – 2008 PostgreSQL Global Development Group - </div> - </div> - </div> - </body> -</html> +$tpl->parse(); +$tpl->show(); + +?> |
