equal
deleted
inserted
replaced
1 <? |
1 <? |
2 |
|
3 // +--------------------------------------------------------------------+ |
|
4 // | PowerAdmin | |
|
5 // +--------------------------------------------------------------------+ |
|
6 // | Copyright (c) 1997-2002 The PowerAdmin Team | |
|
7 // +--------------------------------------------------------------------+ |
|
8 // | This source file is subject to the license carried by the overal | |
|
9 // | program PowerAdmin as found on http://poweradmin.sf.net | |
|
10 // | The PowerAdmin program falls under the QPL License: | |
|
11 // | http://www.trolltech.com/developer/licensing/qpl.html | |
|
12 // +--------------------------------------------------------------------+ |
|
13 // | Authors: Roeland Nieuwenhuis <trancer <AT> trancer <DOT> nl> | |
|
14 // | Sjeemz <sjeemz <AT> sjeemz <DOT> nl> | |
|
15 // +--------------------------------------------------------------------+ |
|
16 |
|
17 // Filename: footer.inc.php |
|
18 // Startdate: beginning. |
|
19 // Description: simple page footer |
|
20 // Closes the database connection. |
|
21 // |
|
22 // $Id: footer.inc.php,v 1.12 2003/05/14 22:49:56 azurazu Exp $ |
|
23 // |
|
24 |
|
25 |
2 |
26 global $db; |
3 global $db; |
27 if(is_object($db)) |
4 if(is_object($db)) |
28 { |
5 { |
29 $db->disconnect(); |
6 $db->disconnect(); |
30 } |
7 } |
31 |
8 |
32 ?> |
9 ?> |
33 <BR><BR> |
10 </div> <!-- /content --> |
34 <FONT CLASS="footer">[ <A HREF="index.php?logout"><? echo _('logout'); ?></A> ] <B>PowerAdmin v1.2.7</B> :: Copyright © |
11 <div class="footer"> |
35 <?= date("Y") ?> The PowerAdmin Team :: <a href="http://poweradmin.org" target="_blank">http://poweradmin.org</a> |
12 <strong>poweradmin</strong> version 1.4.0 - <a href="credits.php"><? echo _('credits'); ?></a> |
36 </FONT> |
13 </div> |
37 </BODY> |
14 <? |
38 </HTML> |
15 if(file_exists('inc/custom_footer.inc.php')) |
39 |
16 { |
|
17 include('inc/custom_footer.inc.php'); |
|
18 } |
|
19 ?> |
|
20 </body> |
|
21 </html> |